| | |
| | | |
| | | import com.aps.common.core.annotation.Excel; |
| | | import com.aps.common.core.web.domain.BaseEntity; |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | 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; |
| | | import org.springframework.data.annotation.Id; |
| | | |
| | | import java.math.BigDecimal; |
| | | |
| | |
| | | * @author hjy |
| | | * @date 2025-04-24 |
| | | */ |
| | | @Data |
| | | @Schema(description = "气体管路产能规划实体类") |
| | | public class ApsGasPipelineCapacityPlan extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @Id |
| | | @TableId(type = IdType.AUTO) |
| | | /** 主键id */ |
| | | @JsonFormat(shape = JsonFormat.Shape.STRING) |
| | | @Schema(description = "主键id", type = "Long") |
| | | private Long id; |
| | | |
| | |
| | | @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; |