cl
2024-01-19 e0fac38b26845f25de479783e0c76cf12a5311e0
提交 | 用户 | 时间
71e81e 1 package cn.stylefeng.guns.modular.am.materialShortageAlarm.entity;
2
3 import com.baomidou.mybatisplus.annotation.TableName;
4 import com.baomidou.mybatisplus.annotation.IdType;
5 import java.util.Date;
6 import com.baomidou.mybatisplus.annotation.TableId;
7 import com.baomidou.mybatisplus.annotation.TableField;
8 import java.io.Serializable;
9
10 /**
11  * <p>
12  * 缺料报警
13  * </p>
14  *
15  * @author zrm
16  * @since 2023-02-15
17  */
18 @TableName("am_material_shortage_alarm")
19 public class MaterialShortageAlarm implements Serializable {
20
21     private static final long serialVersionUID=1L;
22
23     /**
24      * 主键id
25      */
26       @TableId(value = "id", type = IdType.ID_WORKER)
27     private Long id;
28
29     /**
30      * 工单编号
31      */
32     @TableField("work_order_no")
33     private String workOrderNo;
34
35     /**
36      * 产品编号
37      */
38     @TableField("product_code")
39     private String productCode;
40
41     /**
42      * 产线编号
43      */
44     @TableField("production_line")
45     private String productionLine;
46
47     /**
48      * 工位编号
49      */
50     @TableField("location_code")
51     private String locationCode;
52
53     /**
54      * 设备编号
55      */
56     @TableField("equipment_no")
57     private String equipmentNo;
58
59     /**
60      * 物料编号
61      */
62     @TableField("material_code")
63     private String materialCode;
64
65     /**
66      * 数量
67      */
68     @TableField("quantity")
69     private String quantity;
70
71     /**
72      * 不良类型
73      */
74     @TableField("bad_type")
75     private String badType;
76
77     /**
78      * 不良描述
79      */
80     @TableField("bad_desc")
81     private String badDesc;
82
83     /**
84      * 缺料时间
85      */
86     @TableField("call_time")
87     private Date callTime;
88
89     /**
90      * 上料时间
91      */
92     @TableField("feeding_time")
93     private Date feedingTime;
94
95     /**
96      * 是否处理
97      */
98     @TableField("whether_to_handle")
99     private String whetherToHandle;
100
101     /**
102      * 预留字段1
103      */
104     @TableField("spare_field_1")
105     private String spareField1;
106
107     /**
108      * 预留字段2
109      */
110     @TableField("spare_field_2")
111     private String spareField2;
112
113     /**
114      * 备注
115      */
116     @TableField("remarks")
117     private String remarks;
118
119
120     public Long getId() {
121         return id;
122     }
123
124     public void setId(Long id) {
125         this.id = id;
126     }
127
128     public String getWorkOrderNo() {
129         return workOrderNo;
130     }
131
132     public void setWorkOrderNo(String workOrderNo) {
133         this.workOrderNo = workOrderNo;
134     }
135
136     public String getProductCode() {
137         return productCode;
138     }
139
140     public void setProductCode(String productCode) {
141         this.productCode = productCode;
142     }
143
144     public String getProductionLine() {
145         return productionLine;
146     }
147
148     public void setProductionLine(String productionLine) {
149         this.productionLine = productionLine;
150     }
151
152     public String getLocationCode() {
153         return locationCode;
154     }
155
156     public void setLocationCode(String locationCode) {
157         this.locationCode = locationCode;
158     }
159
160     public String getEquipmentNo() {
161         return equipmentNo;
162     }
163
164     public void setEquipmentNo(String equipmentNo) {
165         this.equipmentNo = equipmentNo;
166     }
167
168     public String getMaterialCode() {
169         return materialCode;
170     }
171
172     public void setMaterialCode(String materialCode) {
173         this.materialCode = materialCode;
174     }
175
176     public String getQuantity() {
177         return quantity;
178     }
179
180     public void setQuantity(String quantity) {
181         this.quantity = quantity;
182     }
183
184     public String getBadType() {
185         return badType;
186     }
187
188     public void setBadType(String badType) {
189         this.badType = badType;
190     }
191
192     public String getBadDesc() {
193         return badDesc;
194     }
195
196     public void setBadDesc(String badDesc) {
197         this.badDesc = badDesc;
198     }
199
200     public Date getCallTime() {
201         return callTime;
202     }
203
204     public void setCallTime(Date callTime) {
205         this.callTime = callTime;
206     }
207
208     public Date getFeedingTime() {
209         return feedingTime;
210     }
211
212     public void setFeedingTime(Date feedingTime) {
213         this.feedingTime = feedingTime;
214     }
215
216     public String getWhetherToHandle() {
217         return whetherToHandle;
218     }
219
220     public void setWhetherToHandle(String whetherToHandle) {
221         this.whetherToHandle = whetherToHandle;
222     }
223
224     public String getSpareField1() {
225         return spareField1;
226     }
227
228     public void setSpareField1(String spareField1) {
229         this.spareField1 = spareField1;
230     }
231
232     public String getSpareField2() {
233         return spareField2;
234     }
235
236     public void setSpareField2(String spareField2) {
237         this.spareField2 = spareField2;
238     }
239
240     public String getRemarks() {
241         return remarks;
242     }
243
244     public void setRemarks(String remarks) {
245         this.remarks = remarks;
246     }
247
248     @Override
249     public String toString() {
250         return "MaterialShortageAlarm{" +
251         "id=" + id +
252         ", workOrderNo=" + workOrderNo +
253         ", productCode=" + productCode +
254         ", productionLine=" + productionLine +
255         ", locationCode=" + locationCode +
256         ", equipmentNo=" + equipmentNo +
257         ", materialCode=" + materialCode +
258         ", quantity=" + quantity +
259         ", badType=" + badType +
260         ", badDesc=" + badDesc +
261         ", callTime=" + callTime +
262         ", feedingTime=" + feedingTime +
263         ", whetherToHandle=" + whetherToHandle +
264         ", spareField1=" + spareField1 +
265         ", spareField2=" + spareField2 +
266         ", remarks=" + remarks +
267         "}";
268     }
269 }