admin
2024-01-08 22f70cc8b2ba603e82bba058db320dced48f9470
提交 | 用户 | 时间
71e81e 1 package cn.stylefeng.guns.modular.qc.badReasonConf.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.FieldFill;
8 import com.baomidou.mybatisplus.annotation.TableField;
9 import java.io.Serializable;
10
11 /**
12  * <p>
13  * 不良原因配置
14  * </p>
15  *
16  * @author ruimin
17  * @since 2023-03-11
18  */
19 @TableName("qc_bad_reason_conf")
20 public class BadReasonConf implements Serializable {
21
22     private static final long serialVersionUID=1L;
23
24     /**
25      * 主键id
26      */
27       @TableId(value = "id", type = IdType.AUTO)
28     private Long id;
29
30     /**
31      * 车间编码
32      */
33     @TableField("workshop_code")
34     private String workshopCode;
35
36     /**
37      * 产线编号
38      */
39     @TableField("production_line")
40     private String productionLine;
41
42     /**
43      * 工位编号
44      */
45     @TableField("location_code")
46     private String locationCode;
47
48     /**
49      * 设备编号
50      */
51     @TableField("equipment_no")
52     private String equipmentNo;
53
54     /**
55      * 不良类型编码
56      */
57     @TableField("type_code")
58     private String typeCode;
59
60     /**
61      * 不良类型名称
62      */
63     @TableField("type_name")
64     private String typeName;
65
66     /**
67      * 不良原因编码
68      */
69     @TableField("bad_code")
70     private String badCode;
71
72     /**
73      * 不良原因
74      */
75     @TableField("bad_desc")
76     private String badDesc;
77
78     /**
79      * 状态(1启用,0禁用)
80      */
81     @TableField("status")
82     private String status;
83
84     /**
85      * 创建用户
86      */
87       @TableField(value = "create_user", fill = FieldFill.INSERT)
88     private String createUser;
89
90     /**
91      * 创建时间
92      */
93       @TableField(value = "create_time", fill = FieldFill.INSERT)
94     private Date createTime;
95
96     /**
97      * 更改用户
98      */
99       @TableField(value = "update_user", fill = FieldFill.UPDATE)
100     private String updateUser;
101
102     /**
103      * 更改时间
104      */
105       @TableField(value = "update_time", fill = FieldFill.UPDATE)
106     private Date updateTime;
107
108
109     public Long getId() {
110         return id;
111     }
112
113     public void setId(Long id) {
114         this.id = id;
115     }
116
117     public String getWorkshopCode() {
118         return workshopCode;
119     }
120
121     public void setWorkshopCode(String workshopCode) {
122         this.workshopCode = workshopCode;
123     }
124
125     public String getProductionLine() {
126         return productionLine;
127     }
128
129     public void setProductionLine(String productionLine) {
130         this.productionLine = productionLine;
131     }
132
133     public String getLocationCode() {
134         return locationCode;
135     }
136
137     public void setLocationCode(String locationCode) {
138         this.locationCode = locationCode;
139     }
140
141     public String getEquipmentNo() {
142         return equipmentNo;
143     }
144
145     public void setEquipmentNo(String equipmentNo) {
146         this.equipmentNo = equipmentNo;
147     }
148
149     public String getTypeCode() {
150         return typeCode;
151     }
152
153     public void setTypeCode(String typeCode) {
154         this.typeCode = typeCode;
155     }
156
157     public String getTypeName() {
158         return typeName;
159     }
160
161     public void setTypeName(String typeName) {
162         this.typeName = typeName;
163     }
164
165     public String getBadCode() {
166         return badCode;
167     }
168
169     public void setBadCode(String badCode) {
170         this.badCode = badCode;
171     }
172
173     public String getBadDesc() {
174         return badDesc;
175     }
176
177     public void setBadDesc(String badDesc) {
178         this.badDesc = badDesc;
179     }
180
181     public String getStatus() {
182         return status;
183     }
184
185     public void setStatus(String status) {
186         this.status = status;
187     }
188
189     public String getCreateUser() {
190         return createUser;
191     }
192
193     public void setCreateUser(String createUser) {
194         this.createUser = createUser;
195     }
196
197     public Date getCreateTime() {
198         return createTime;
199     }
200
201     public void setCreateTime(Date createTime) {
202         this.createTime = createTime;
203     }
204
205     public String getUpdateUser() {
206         return updateUser;
207     }
208
209     public void setUpdateUser(String updateUser) {
210         this.updateUser = updateUser;
211     }
212
213     public Date getUpdateTime() {
214         return updateTime;
215     }
216
217     public void setUpdateTime(Date updateTime) {
218         this.updateTime = updateTime;
219     }
220
221     @Override
222     public String toString() {
223         return "BadReasonConf{" +
224         "id=" + id +
225         ", workshopCode=" + workshopCode +
226         ", productionLine=" + productionLine +
227         ", locationCode=" + locationCode +
228         ", equipmentNo=" + equipmentNo +
229         ", typeCode=" + typeCode +
230         ", typeName=" + typeName +
231         ", badCode=" + badCode +
232         ", badDesc=" + badDesc +
233         ", status=" + status +
234         ", createUser=" + createUser +
235         ", createTime=" + createTime +
236         ", updateUser=" + updateUser +
237         ", updateTime=" + updateTime +
238         "}";
239     }
240 }