hongjli
2025-05-22 46090777fa7a6f34701fd3ddf617d815ea5d718f
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 com.aps.common.core.annotation.Excel;
import com.aps.common.core.web.domain.BaseEntity;
import io.swagger.v3.oas.annotations.media.Schema;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
 
import java.math.BigDecimal;
 
/**
 * 标准工序对象 aps_standard_process
 * 
 * @author hjy
 * @date 2025-04-23
 */
 
@Schema(description = "标准工序实体")
public class ApsStandardProcess extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 主键id */
    @Schema(description = "主键id", type = "Long")
    private Long id;
 
    /** 工序编码 */
    @Schema(description = "工序编码", type = "String")
    @Excel(name = "工序编码")
    private String processNumber;
 
    /** 工序名称 */
    @Schema(description = "工序名称", type = "String")
    @Excel(name = "工序名称")
    private String processName;
 
    /** 资源组 */
    @Schema(description = "资源组", type = "String")
    @Excel(name = "资源组")
    private String resourceGroupName;
    /** 专业 */
    @Schema(description = "专业", type = "String")
    @Excel(name = "专业")
    private String major;
 
    /** 产能模型: 独占/合批 */
    @Schema(description = "产能模型", type = "String")
    @Excel(name = "产能模型")
    private String model;
 
    /** 设计产能 */
    @Schema(description = "设计产能", type = "String")
    @Excel(name = "设计产能")
    private BigDecimal designCapacity;
 
    /** 工厂Id */
    @Schema(description = "工厂Id", type = "String")
//    @Excel(name = "工厂Id")
    private String plantId;
 
    /** 工厂 */
    @Schema(description = "适用工厂", type = "String")
    @Excel(name = "适用工厂")
    private String plant;
 
    /** 车间Id */
    @Schema(description = "车间Id", type = "String")
//    @Excel(name = "车间Id")
    private String workShopId;
 
    /** 车间 */
    @Schema(description = "适用车间", type = "String")
    @Excel(name = "适用车间")
    private String workShop;
 
    /** 日历Id */
    @Schema(description = "日历Id", type = "Long")
//    @Excel(name = "日历Id")
    private Long workCalenderId;
 
    /** 日历描述 */
    @Schema(description = "日历描述", type = "String")
    @Excel(name = "日历描述")
    private String workCalender;
 
    /** 产能模型Id */
    @Schema(description = "产能模型Id", type = "Long")
//    @Excel(name = "产能模型Id")
    private Long modelId;
 
 
    /** 删除标志(0代表存在 2代表删除) */
    @Schema(description = "删除标志(0代表存在 2代表删除)", type = "String")
    private String delFlag;
 
 
 
    public String getMajor() {
        return major;
    }
 
    public void setMajor(String major) {
        this.major = major;
    }
 
    public void setId(Long id) 
    {
        this.id = id;
    }
 
    public Long getId() 
    {
        return id;
    }
 
    public void setProcessNumber(String processNumber) 
    {
        this.processNumber = processNumber;
    }
 
    public String getProcessNumber() 
    {
        return processNumber;
    }
 
    public void setProcessName(String processName) 
    {
        this.processName = processName;
    }
 
    public String getProcessName() 
    {
        return processName;
    }
 
    public void setResourceGroupName(String resourceGroupName) 
    {
        this.resourceGroupName = resourceGroupName;
    }
 
    public String getResourceGroupName() 
    {
        return resourceGroupName;
    }
 
    public void setModel(String model) 
    {
        this.model = model;
    }
 
    public String getModel() 
    {
        return model;
    }
 
    public void setDesignCapacity(BigDecimal designCapacity)
    {
        this.designCapacity = designCapacity;
    }
 
    public BigDecimal getDesignCapacity()
    {
        return designCapacity;
    }
 
    public void setPlantId(String plantId) 
    {
        this.plantId = plantId;
    }
 
    public String getPlantId() 
    {
        return plantId;
    }
 
    public void setPlant(String plant) 
    {
        this.plant = plant;
    }
 
    public String getPlant() 
    {
        return plant;
    }
 
    public void setWorkShopId(String workShopId) 
    {
        this.workShopId = workShopId;
    }
 
    public String getWorkShopId() 
    {
        return workShopId;
    }
 
    public void setWorkShop(String workShop) 
    {
        this.workShop = workShop;
    }
 
    public String getWorkShop() 
    {
        return workShop;
    }
 
    public void setWorkCalenderId(Long workCalenderId) 
    {
        this.workCalenderId = workCalenderId;
    }
 
    public Long getWorkCalenderId() 
    {
        return workCalenderId;
    }
 
    public void setDelFlag(String delFlag) 
    {
        this.delFlag = delFlag;
    }
 
    public String getDelFlag() 
    {
        return delFlag;
    }
 
    public void setModelId(Long modelId) 
    {
        this.modelId = modelId;
    }
 
    public Long getModelId() 
    {
        return modelId;
    }
 
    public void setWorkCalender(String workCalender) 
    {
        this.workCalender = workCalender;
    }
 
    public String getWorkCalender() 
    {
        return workCalender;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("processNumber", getProcessNumber())
            .append("processName", getProcessName())
            .append("resourceGroupName", getResourceGroupName())
            .append("model", getModel())
            .append("designCapacity", getDesignCapacity())
            .append("plantId", getPlantId())
            .append("plant", getPlant())
            .append("workShopId", getWorkShopId())
            .append("workShop", getWorkShop())
            .append("workCalenderId", getWorkCalenderId())
            .append("delFlag", getDelFlag())
            .append("createBy", getCreateBy())
            .append("createTime", getCreateTime())
            .append("updateBy", getUpdateBy())
            .append("updateTime", getUpdateTime())
            .append("modelId", getModelId())
            .append("workCalender", getWorkCalender())
            .append("major", getMajor())
            .toString();
    }
}