huangjiayang
2025-04-24 5ebd6188ee62841d1c96aef623bb1f8f13457395
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
package com.aps.core.domain;
 
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.aps.common.core.annotation.Excel;
import com.aps.common.core.web.domain.BaseEntity;
 
/**
 * 焊缝统计对象 aps_weld_seam_statistics
 * 
 * @author wwj
 * @date 2025-04-09
 */
public class ApsWeldSeamStatistics extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 主键id */
    private String id;
 
    /** 年份 */
    @Excel(name = "年份")
    private Long year;
 
    /** 月份 */
    @Excel(name = "月份")
    private Long month;
 
    /** 生产基地 */
    @Excel(name = "生产基地")
    private String productionBase;
 
    /** 管路订单需求 */
    @Excel(name = "管路订单需求")
    private Long pipingOrderRequirement;
 
    /** 气柜订单需求 */
    @Excel(name = "气柜订单需求")
    private Long gasOrderRequirement;
 
    /** 管路预测需求 */
    @Excel(name = "管路预测需求")
    private Long pipingPredictionRequirement;
 
    /** 气柜预测需求 */
    @Excel(name = "气柜预测需求")
    private Long gasPredictionRequirement;
 
    /** 预留紧急订单产出 */
    @Excel(name = "预留紧急订单产出")
    private Long reserveEmergencyOrderOutput;
 
    /** 合计 */
    @Excel(name = "合计")
    private Long total;
 
    /** 天数 */
    @Excel(name = "天数")
    private Long days;
 
    /** 需求日焊缝 */
    @Excel(name = "需求日焊缝")
    private Long requirementDayWeldSeam;
 
    /** 生产日焊缝 */
    @Excel(name = "生产日焊缝")
    private Long productionDayWeldSeam;
 
    /** 是否满足 */
    @Excel(name = "是否满足")
    private String isSatisfy;
 
    public String getWorkOrderType() {
        return workOrderType;
    }
 
    public void setWorkOrderType(String workOrderType) {
        this.workOrderType = workOrderType;
    }
 
    public String getClassification() {
        return classification;
    }
 
    public void setClassification(String classification) {
        this.classification = classification;
    }
 
    private String workOrderType;
    private String classification;
 
 
    /** 删除标志(0代表存在 2代表删除) */
    private String delFlag;
 
    public void setId(String id) 
    {
        this.id = id;
    }
 
    public String getId() 
    {
        return id;
    }
 
    public void setYear(Long year) 
    {
        this.year = year;
    }
 
    public Long getYear() 
    {
        return year;
    }
 
    public void setMonth(Long month) 
    {
        this.month = month;
    }
 
    public Long getMonth() 
    {
        return month;
    }
 
    public void setProductionBase(String productionBase) 
    {
        this.productionBase = productionBase;
    }
 
    public String getProductionBase() 
    {
        return productionBase;
    }
 
    public void setPipingOrderRequirement(Long pipingOrderRequirement) 
    {
        this.pipingOrderRequirement = pipingOrderRequirement;
    }
 
    public Long getPipingOrderRequirement() 
    {
        return pipingOrderRequirement;
    }
 
    public void setGasOrderRequirement(Long gasOrderRequirement) 
    {
        this.gasOrderRequirement = gasOrderRequirement;
    }
 
    public Long getGasOrderRequirement() 
    {
        return gasOrderRequirement;
    }
 
    public void setPipingPredictionRequirement(Long pipingPredictionRequirement) 
    {
        this.pipingPredictionRequirement = pipingPredictionRequirement;
    }
 
    public Long getPipingPredictionRequirement() 
    {
        return pipingPredictionRequirement;
    }
 
    public void setGasPredictionRequirement(Long gasPredictionRequirement) 
    {
        this.gasPredictionRequirement = gasPredictionRequirement;
    }
 
    public Long getGasPredictionRequirement() 
    {
        return gasPredictionRequirement;
    }
 
    public void setReserveEmergencyOrderOutput(Long reserveEmergencyOrderOutput) 
    {
        this.reserveEmergencyOrderOutput = reserveEmergencyOrderOutput;
    }
 
    public Long getReserveEmergencyOrderOutput() 
    {
        return reserveEmergencyOrderOutput;
    }
 
    public void setTotal(Long total) 
    {
        this.total = total;
    }
 
    public Long getTotal() 
    {
        return total;
    }
 
    public void setDays(Long days) 
    {
        this.days = days;
    }
 
    public Long getDays() 
    {
        return days;
    }
 
    public void setRequirementDayWeldSeam(Long requirementDayWeldSeam) 
    {
        this.requirementDayWeldSeam = requirementDayWeldSeam;
    }
 
    public Long getRequirementDayWeldSeam() 
    {
        return requirementDayWeldSeam;
    }
 
    public void setProductionDayWeldSeam(Long productionDayWeldSeam) 
    {
        this.productionDayWeldSeam = productionDayWeldSeam;
    }
 
    public Long getProductionDayWeldSeam() 
    {
        return productionDayWeldSeam;
    }
 
    public void setIsSatisfy(String isSatisfy) 
    {
        this.isSatisfy = isSatisfy;
    }
 
    public String getIsSatisfy() 
    {
        return isSatisfy;
    }
 
    public void setDelFlag(String delFlag) 
    {
        this.delFlag = delFlag;
    }
 
    public String getDelFlag() 
    {
        return delFlag;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("year", getYear())
            .append("month", getMonth())
            .append("productionBase", getProductionBase())
            .append("pipingOrderRequirement", getPipingOrderRequirement())
            .append("gasOrderRequirement", getGasOrderRequirement())
            .append("pipingPredictionRequirement", getPipingPredictionRequirement())
            .append("gasPredictionRequirement", getGasPredictionRequirement())
            .append("reserveEmergencyOrderOutput", getReserveEmergencyOrderOutput())
            .append("total", getTotal())
            .append("days", getDays())
            .append("requirementDayWeldSeam", getRequirementDayWeldSeam())
            .append("productionDayWeldSeam", getProductionDayWeldSeam())
            .append("isSatisfy", getIsSatisfy())
            .append("delFlag", getDelFlag())
            .append("createBy", getCreateBy())
            .append("createTime", getCreateTime())
            .append("updateBy", getUpdateBy())
            .append("updateTime", getUpdateTime())
            .toString();
    }
}