sfd
2025-05-22 791208eed8021ef7eb857ced5f031485cff7a2b7
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
271
272
273
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 org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
 
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * 物料管理对象 aps_material_management
 * 
 * @author dingYang
 * @date 2025-04-17
 */
public class ApsMaterialManagement extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** id */
    private Long id;
 
    /** 料号 */
    @Excel(name = "料号")
    private String itemNumber;
 
    /** 物料描述 */
    @Excel(name = "物料描述")
    private String materialDescription;
 
    /** 物料状态 */
    @Excel(name = "物料状态")
    private String materialStatus;
 
    /** 物料类型 */
    @Excel(name = "物料类型")
    private String materialType;
 
    /** 专业归属 */
    @Excel(name = "专业归属")
    private String professionalAffiliation;
 
    /** 图号 */
    @Excel(name = "图号")
    private String drawingNo;
 
    /** 版本 */
    @Excel(name = "版本")
    private String versionNumber;
 
    /** 最早可提前生产天数 */
    @Excel(name = "最早可提前生产天数")
    private BigDecimal advanceProductionDays;
 
    /** 拆分批量 */
    @Excel(name = "拆分批量")
    private Long splitBatch;
 
    /** 是否自制 */
    @Excel(name = "是否自制")
    private String selfMade;
 
    /** 适用工厂 */
    @Excel(name = "适用工厂")
    private String applicableFactories;
 
    /** 适用车间 */
    @Excel(name = "适用车间")
    private String applicableWorkshop;
 
    /** 生效日期 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Excel(name = "生效日期", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
    private Date effectiveDate;
 
    /** 失效日期 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Excel(name = "失效日期", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
    private Date expiringDate;
 
    /** 集成日期 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Excel(name = "集成日期", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
    private Date integrationDate;
 
    public void setId(Long id)
    {
        this.id = id;
    }
 
    public Long getId()
    {
        return id;
    }
 
    public void setItemNumber(String itemNumber)
    {
        this.itemNumber = itemNumber;
    }
 
    public String getItemNumber()
    {
        return itemNumber;
    }
 
    public void setMaterialDescription(String materialDescription) 
    {
        this.materialDescription = materialDescription;
    }
 
    public String getMaterialDescription() 
    {
        return materialDescription;
    }
 
    public void setMaterialStatus(String materialStatus) 
    {
        this.materialStatus = materialStatus;
    }
 
    public String getMaterialStatus() 
    {
        return materialStatus;
    }
 
    public void setMaterialType(String materialType) 
    {
        this.materialType = materialType;
    }
 
    public String getMaterialType() 
    {
        return materialType;
    }
 
    public void setProfessionalAffiliation(String professionalAffiliation) 
    {
        this.professionalAffiliation = professionalAffiliation;
    }
 
    public String getProfessionalAffiliation() 
    {
        return professionalAffiliation;
    }
 
    public void setDrawingNo(String drawingNo) 
    {
        this.drawingNo = drawingNo;
    }
 
    public String getDrawingNo() 
    {
        return drawingNo;
    }
 
    public void setVersionNumber(String versionNumber) 
    {
        this.versionNumber = versionNumber;
    }
 
    public String getVersionNumber() 
    {
        return versionNumber;
    }
 
    public void setAdvanceProductionDays(BigDecimal advanceProductionDays)
    {
        this.advanceProductionDays = advanceProductionDays;
    }
 
    public BigDecimal getAdvanceProductionDays()
    {
        return advanceProductionDays;
    }
 
    public void setSplitBatch(Long splitBatch) 
    {
        this.splitBatch = splitBatch;
    }
 
    public Long getSplitBatch() 
    {
        return splitBatch;
    }
 
    public void setSelfMade(String selfMade)
    {
        this.selfMade = selfMade;
    }
 
    public String getSelfMade()
    {
        return selfMade;
    }
 
    public void setApplicableFactories(String applicableFactories) 
    {
        this.applicableFactories = applicableFactories;
    }
 
    public String getApplicableFactories() 
    {
        return applicableFactories;
    }
 
    public void setApplicableWorkshop(String applicableWorkshop) 
    {
        this.applicableWorkshop = applicableWorkshop;
    }
 
    public String getApplicableWorkshop() 
    {
        return applicableWorkshop;
    }
 
    public void setEffectiveDate(Date effectiveDate) 
    {
        this.effectiveDate = effectiveDate;
    }
 
    public Date getEffectiveDate() 
    {
        return effectiveDate;
    }
 
    public void setExpiringDate(Date expiringDate) 
    {
        this.expiringDate = expiringDate;
    }
 
    public Date getExpiringDate() 
    {
        return expiringDate;
    }
 
    public void setIntegrationDate(Date integrationDate) 
    {
        this.integrationDate = integrationDate;
    }
 
    public Date getIntegrationDate() 
    {
        return integrationDate;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("itemNumber", getItemNumber())
            .append("materialDescription", getMaterialDescription())
            .append("materialStatus", getMaterialStatus())
            .append("materialType", getMaterialType())
            .append("professionalAffiliation", getProfessionalAffiliation())
            .append("drawingNo", getDrawingNo())
            .append("versionNumber", getVersionNumber())
            .append("advanceProductionDays", getAdvanceProductionDays())
            .append("splitBatch", getSplitBatch())
            .append("selfMade", getSelfMade())
            .append("applicableFactories", getApplicableFactories())
            .append("applicableWorkshop", getApplicableWorkshop())
            .append("effectiveDate", getEffectiveDate())
            .append("expiringDate", getExpiringDate())
            .append("integrationDate", getIntegrationDate())
            .append("createBy", getCreateBy())
            .append("createTime", getCreateTime())
            .append("updateBy", getUpdateBy())
            .append("updateTime", getUpdateTime())
            .toString();
    }
}