| | |
| | | |
| | | import com.aps.common.core.annotation.Excel; |
| | | import com.aps.common.core.web.domain.BaseEntity; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | | import org.apache.commons.lang3.builder.ToStringStyle; |
| | | |
| | | import java.math.BigDecimal; |
| | | |
| | | /** |
| | | * 标准工序对象 aps_standard_process |
| | |
| | | * @author hjy |
| | | * @date 2025-04-23 |
| | | */ |
| | | |
| | | @Schema(description = "标准工序实体") |
| | | public class ApsStandardProcess extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** 主键id */ |
| | | @Schema(description = "主键id", type = "Long") |
| | | private Long id; |
| | | |
| | | /** 工序编码 */ |
| | | @Schema(description = "工序编码", type = "String") |
| | | @Excel(name = "工序编码") |
| | | private String processNumber; |
| | | |
| | | /** 工序名称 */ |
| | | @Schema(description = "工序名称", type = "String") |
| | | @Excel(name = "工序名称") |
| | | private String processName; |
| | | |
| | | /** 资源组 */ |
| | | @Schema(description = "资源组", type = "String") |
| | | @Excel(name = "资源组") |
| | | private String resourceGroupName; |
| | | |
| | | /** 产能模型: 独占/合批 */ |
| | | @Excel(name = "产能模型: 独占/合批") |
| | | @Schema(description = "产能模型", type = "String") |
| | | @Excel(name = "产能模型") |
| | | private String model; |
| | | |
| | | /** 设计产能 */ |
| | | @Schema(description = "设计产能", type = "String") |
| | | @Excel(name = "设计产能") |
| | | private String designCapacity; |
| | | private BigDecimal designCapacity; |
| | | |
| | | /** 工厂Id */ |
| | | @Excel(name = "工厂Id") |
| | | @Schema(description = "工厂Id", type = "String") |
| | | // @Excel(name = "工厂Id") |
| | | private String plantId; |
| | | |
| | | /** 工厂 */ |
| | | @Schema(description = "工厂", type = "String") |
| | | @Excel(name = "工厂") |
| | | private String plant; |
| | | |
| | | /** 车间Id */ |
| | | @Excel(name = "车间Id") |
| | | @Schema(description = "车间Id", type = "String") |
| | | // @Excel(name = "车间Id") |
| | | private String workShopId; |
| | | |
| | | /** 车间 */ |
| | | @Schema(description = "车间", type = "String") |
| | | @Excel(name = "车间") |
| | | private String workShop; |
| | | |
| | | /** 日历Id */ |
| | | @Excel(name = "日历Id") |
| | | @Schema(description = "日历Id", type = "Long") |
| | | // @Excel(name = "日历Id") |
| | | private Long workCalenderId; |
| | | |
| | | /** 删除标志(0代表存在 2代表删除) */ |
| | | @Schema(description = "删除标志(0代表存在 2代表删除)", type = "String") |
| | | private String delFlag; |
| | | |
| | | /** 产能模型Id */ |
| | | @Excel(name = "产能模型Id") |
| | | @Schema(description = "产能模型Id", type = "Long") |
| | | // @Excel(name = "产能模型Id") |
| | | private Long modelId; |
| | | |
| | | /** 日历描述 */ |
| | | @Schema(description = "日历描述", type = "String") |
| | | @Excel(name = "日历描述") |
| | | private String workCalender; |
| | | |
| | |
| | | return model; |
| | | } |
| | | |
| | | public void setDesignCapacity(String designCapacity) |
| | | public void setDesignCapacity(BigDecimal designCapacity) |
| | | { |
| | | this.designCapacity = designCapacity; |
| | | } |
| | | |
| | | public String getDesignCapacity() |
| | | public BigDecimal getDesignCapacity() |
| | | { |
| | | return designCapacity; |
| | | } |