cl
2024-01-16 cf6bff3922bbd0624b98834f6ea85c8e619e564f
提交 | 用户 | 时间
71e81e 1 package cn.stylefeng.guns.modular.bs.locationInfo.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 cl
17  * @since 2022-10-28
18  */
19 @TableName("bs_location_info")
20 public class LocationInfo 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("location_code")
34     private String locationCode;
35
36     /**
37      * 工位名称
38      */
39     @TableField("location_name")
40     private String locationName;
41
42     /**
43      * 工位类型(1自动2半自动3手动)
44      */
45     @TableField("location_type")
46     private String locationType;
47
48     /**
49      * 车间编号
50      */
51     @TableField("workshop_code")
52     private String workshopCode;
53
54     /**
55      * 产线编号
56      */
57     @TableField("production_line_code")
58     private String productionLineCode;
59
60     /**
61      * 预留字段1
62      */
63     @TableField("spare_field_1")
64     private String spareField1;
65
66     /**
67      * 预留字段2
68      */
69     @TableField("spare_field_2")
70     private String spareField2;
71
72     /**
73      * 备注
74      */
75     @TableField("remarks")
76     private String remarks;
77
78     /**
79      * 创建用户
80      */
81       @TableField(value = "create_user", fill = FieldFill.INSERT)
82     private String createUser;
83
84     /**
85      * 创建时间
86      */
87       @TableField(value = "create_time", fill = FieldFill.INSERT)
88     private Date createTime;
89
90     /**
91      * 更改用户
92      */
93       @TableField(value = "update_user", fill = FieldFill.UPDATE)
94     private String updateUser;
95
96     /**
97      * 更改时间
98      */
99       @TableField(value = "update_time", fill = FieldFill.UPDATE)
100     private Date updateTime;
101
102
103     public Long getId() {
104         return id;
105     }
106
107     public void setId(Long id) {
108         this.id = id;
109     }
110
111     public String getLocationCode() {
112         return locationCode;
113     }
114
115     public void setLocationCode(String locationCode) {
116         this.locationCode = locationCode;
117     }
118
119     public String getLocationName() {
120         return locationName;
121     }
122
123     public void setLocationName(String locationName) {
124         this.locationName = locationName;
125     }
126
127     public String getLocationType() {
128         return locationType;
129     }
130
131     public void setLocationType(String locationType) {
132         this.locationType = locationType;
133     }
134
135     public String getWorkshopCode() {
136         return workshopCode;
137     }
138
139     public void setWorkshopCode(String workshopCode) {
140         this.workshopCode = workshopCode;
141     }
142
143     public String getProductionLineCode() {
144         return productionLineCode;
145     }
146
147     public void setProductionLineCode(String productionLineCode) {
148         this.productionLineCode = productionLineCode;
149     }
150
151     public String getSpareField1() {
152         return spareField1;
153     }
154
155     public void setSpareField1(String spareField1) {
156         this.spareField1 = spareField1;
157     }
158
159     public String getSpareField2() {
160         return spareField2;
161     }
162
163     public void setSpareField2(String spareField2) {
164         this.spareField2 = spareField2;
165     }
166
167     public String getRemarks() {
168         return remarks;
169     }
170
171     public void setRemarks(String remarks) {
172         this.remarks = remarks;
173     }
174
175     public String getCreateUser() {
176         return createUser;
177     }
178
179     public void setCreateUser(String createUser) {
180         this.createUser = createUser;
181     }
182
183     public Date getCreateTime() {
184         return createTime;
185     }
186
187     public void setCreateTime(Date createTime) {
188         this.createTime = createTime;
189     }
190
191     public String getUpdateUser() {
192         return updateUser;
193     }
194
195     public void setUpdateUser(String updateUser) {
196         this.updateUser = updateUser;
197     }
198
199     public Date getUpdateTime() {
200         return updateTime;
201     }
202
203     public void setUpdateTime(Date updateTime) {
204         this.updateTime = updateTime;
205     }
206
207     @Override
208     public String toString() {
209         return "LocationInfo{" +
210         "id=" + id +
211         ", locationCode=" + locationCode +
212         ", locationName=" + locationName +
213         ", locationType=" + locationType +
214         ", workshopCode=" + workshopCode +
215         ", productionLineCode=" + productionLineCode +
216         ", spareField1=" + spareField1 +
217         ", spareField2=" + spareField2 +
218         ", remarks=" + remarks +
219         ", createUser=" + createUser +
220         ", createTime=" + createTime +
221         ", updateUser=" + updateUser +
222         ", updateTime=" + updateTime +
223         "}";
224     }
225 }