| | |
| | | import com.aps.common.core.web.domain.BaseEntity; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | | import org.apache.commons.lang3.builder.ToStringStyle; |
| | | |
| | |
| | | * @author hjy |
| | | * @date 2025-04-24 |
| | | */ |
| | | @Data |
| | | @Schema(description = "气体管路产能规划实体类") |
| | | public class ApsGasPipelineCapacityPlan extends BaseEntity |
| | | { |
| | |
| | | @Schema(description = "日产出单位", type = "String") |
| | | private String dayProduceUnit; |
| | | |
| | | |
| | | /** 人员数量 */ |
| | | @Excel(name = "人员数量") |
| | | @Schema(description = "人员数量", type = "BigDecimal") |
| | |
| | | @Schema(description = "工厂代码", type = "String") |
| | | private String orgCode; |
| | | |
| | | |
| | | /** 车间 */ |
| | | @Excel(name = "车间") |
| | | @Schema(description = "车间", type = "String") |
| | | private String workshop; |
| | | |
| | | public void setOrgCode(String orgCode) |
| | | { |
| | | this.orgCode = orgCode; |