sfd
2025-05-20 a679707708e8595a96bb67d2c38edceeb2d1e121
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
package com.aps.core.domain;
 
import com.aps.common.core.annotation.Excel;
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 lombok.EqualsAndHashCode;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import org.springframework.data.annotation.Transient;
 
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * 气体管路产能负载统计对象 aps_gas_piping_route_stat
 * 
 * @author hjy
 * @date 2025-04-24
 */
@EqualsAndHashCode(callSuper = true)
@Schema(description = "气体管路产能负载统计实体类")
@Data
public class ApsGasPipingRouteStat extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 主键id */
    @Schema(description = "主键id", type = "Long")
    private String id;
 
    /** 工单号 */
    @Excel(name = "工单号")
    @Schema(description = "工单号", type = "String")
    private String workOrderNo;
 
    /** 工序号 */
    @Excel(name = "工序号")
    @Schema(description = "工序号", type = "String")
    private BigDecimal roadProcessNumber;
 
    /** 当前工序号 */
    @Excel(name = "当前工序号")
    @Schema(description = "当前工序号", type = "String")
    private BigDecimal currentProcessNumber;
 
    /** 生产数量 */
    @Excel(name = "生产数量")
    @Schema(description = "生产数量", type = "BigDecimal")
    private BigDecimal productionQuantity;
 
    /** 标准工时 */
    @Excel(name = "标准工时")
    @Schema(description = "标准工时", type = "BigDecimal")
    private BigDecimal standardTime;
 
    /** 工序总工时 */
    @Excel(name = "工序总工时")
    @Schema(description = "工序总工时", type = "BigDecimal")
    private BigDecimal processTotalTime;
 
    /** 计划开工日 */
    @Excel(name = "计划开工日", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date processPlanStartDay;
 
    /** 设计工时 */
    @Excel(name = "设计工时")
    @Schema(description = "设计工时", type = "Long")
    private Long designTimes;
 
    /** 删除标志(0代表存在 2代表删除) */
    @Schema(description = "删除标志(0代表存在 2代表删除)", type = "String")
    private String delFlag;
 
    /** 工序名称 */
    @Excel(name = "工序名称")
    @Schema(description = "工序名称", type = "String")
    private String processName;
 
    /** 料号 */
    @Excel(name = "料号")
    @Schema(description = "料号", type = "String")
    private String itemNumber;
 
    /** 标准用量 */
    @Excel(name = "标准用量")
    @Schema(description = "标准用量", type = "BigDecimal")
    private BigDecimal standardDosage;
 
    /** 工序总用量 */
    @Excel(name = "工序总用量")
    @Schema(description = "工序总用量", type = "BigDecimal")
    private BigDecimal processTotalDosage;
 
    /** 设计产能 */
    @Excel(name = "设计产能")
    @Schema(description = "设计产能", type = "BigDecimal")
    private BigDecimal designCapacity;
 
    /** 设计产能 */
    @Excel(name = "专业")
    @Schema(description = "专业", type = "String")
    private String major;
 
    /** 年 */
    @Excel(name = "年")
    @Schema(description = "年", type = "String")
    private String planStartYear;
 
    /** 月 */
    @Excel(name = "月")
    @Schema(description = "月", type = "String")
    private String planStartMonth;
 
    /** 日 */
    @Excel(name = "日")
    @Schema(description = "日", type = "String")
    private String planStartDay;
 
    /** 批次号 */
    @Excel(name = "批次号")
    private String batchNumber;
 
    /** 工厂 */
    private String plant;
 
    @Transient
    private String searchStartDate;
 
    @Transient
    private String searchEndDate;
 
    @Transient
    private String searchType;
 
    private Boolean warning;
    private Integer num;
    private BigDecimal routeProcessNumber;
    private Date orderPlanEndDay;
    /** 计划完成日 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Excel(name = "计划完工日", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
    private Date processPlanEndDay;
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("workOrderNo", getWorkOrderNo())
            .append("roadProcessNumber", getRoadProcessNumber())
            .append("currentProcessNumber", getCurrentProcessNumber())
            .append("productionQuantity", getProductionQuantity())
            .append("standardTime", getStandardTime())
            .append("processTotalTime", getProcessTotalTime())
            .append("processPlanStartDay", getProcessPlanStartDay())
            .append("designTimes", getDesignTimes())
            .append("delFlag", getDelFlag())
            .append("createBy", getCreateBy())
            .append("processName", getProcessName())
            .append("createTime", getCreateTime())
            .toString();
    }
}