| | |
| | | package com.aps.core.domain; |
| | | |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | | import org.apache.commons.lang3.builder.ToStringStyle; |
| | | import com.aps.common.core.annotation.Excel; |
| | |
| | | * @author zhl |
| | | * @date 2025-04-23 |
| | | */ |
| | | //@ApiModel("钣金车间统计实体类") |
| | | @Schema(description = "钣金车间统计对象") |
| | | public class ApsPlateProcessShopStat extends BaseEntity |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** $column.columnComment */ |
| | | //@ApiModelProperty("$column.columnComment") |
| | | @Schema(description = "主键id", type = "Long") |
| | | private Long id; |
| | | |
| | | /** 单据号 */ |
| | | @Excel(name = "单据号") |
| | | ///@ApiModelProperty("单据号") |
| | | @Schema(description = "单据号", type = "String") |
| | | private String docNo; |
| | | |
| | | /** 车间编码 */ |
| | | @Excel(name = "车间编码") |
| | | //@ApiModelProperty("车间编码") |
| | | @Schema(description = "车间编码", type = "String") |
| | | private String shopCode; |
| | | |
| | | /** 车间名称 */ |
| | | @Excel(name = "车间名称") |
| | | //@ApiModelProperty("车间名称") |
| | | @Schema(description = "车间名称", type = "String") |
| | | private String shopName; |
| | | |
| | | /** 计划开始时间 */ |
| | | @Excel(name = "计划开始时间") |
| | | //@ApiModelProperty("计划开始时间") |
| | | @Schema(description = "计划开始时间", type = "String") |
| | | private String planStartDate; |
| | | |
| | | /** 计划结束日期 */ |
| | | @Excel(name = "计划结束日期") |
| | | //@ApiModelProperty("计划结束日期") |
| | | @Schema(description = "计划结束日期", type = "String") |
| | | private String planEndDate; |
| | | |
| | | /** 删除标志(0代表存在 2代表删除) */ |
| | | //@ApiModelProperty("删除标志(0代表存在 2代表删除)") |
| | | @Schema(description = "删除标志", type = "String") |
| | | private String delFlag; |
| | | |
| | | public void setId(Long id) |