yantian yue
2023-10-17 487b2f2a353b89ab46cd9b784226b600b7b915b8
提交 | 用户 | 时间
4779be 1 package cn.stylefeng.guns.modular.zsx.sys.kanbanConf.entity;
2
3 import com.baomidou.mybatisplus.annotation.TableName;
4 import com.baomidou.mybatisplus.annotation.IdType;
5 import com.baomidou.mybatisplus.annotation.TableId;
6 import com.baomidou.mybatisplus.annotation.TableField;
7 import java.io.Serializable;
8
9 /**
10  * <p>
11  * 看板配置
12  * </p>
13  *
14  * @author ruimin
15  * @since 2023-10-08
16  */
17 @TableName("sys_kanban_conf")
18 public class KanbanConf implements Serializable {
19
20     private static final long serialVersionUID=1L;
21
22     /**
23      * ID
24      */
25       @TableId(value = "id", type = IdType.ID_WORKER)
26     private Long id;
27
28     /**
29      * 页面编号
30      */
31     @TableField("page_code")
32     private String pageCode;
33
34     /**
35      * ip地址
36      */
37     @TableField("ip_address")
38     private String ipAddress;
39
40     /**
41      * MAC地址
42      */
43     @TableField("mac_address")
44     private String macAddress;
45
46     /**
47      * 车间编号
48      */
49     @TableField("workshop_code")
50     private String workshopCode;
51
52     /**
53      * 车间名称
54      */
55     @TableField("workshop_name")
56     private String workshopName;
57
58     /**
59      * 产线编号
60      */
61     @TableField("line_code")
62     private String lineCode;
63
64     /**
65      * 产线名称
66      */
67     @TableField("line_name")
68     private String lineName;
69
70     /**
71      * 工位编码
72      */
73     @TableField("location_code")
74     private String locationCode;
75
76     /**
77      * 工位名称
78      */
79     @TableField("location_name")
80     private String locationName;
81
82     /**
83      * 仓库编号
84      */
85     @TableField("warehouse_code")
86     private String warehouseCode;
87
88     /**
89      * 仓库名称
90      */
91     @TableField("warehouse_name")
92     private String warehouseName;
93
94
95     public Long getId() {
96         return id;
97     }
98
99     public void setId(Long id) {
100         this.id = id;
101     }
102
103     public String getPageCode() {
104         return pageCode;
105     }
106
107     public void setPageCode(String pageCode) {
108         this.pageCode = pageCode;
109     }
110
111     public String getIpAddress() {
112         return ipAddress;
113     }
114
115     public void setIpAddress(String ipAddress) {
116         this.ipAddress = ipAddress;
117     }
118
119     public String getMacAddress() {
120         return macAddress;
121     }
122
123     public void setMacAddress(String macAddress) {
124         this.macAddress = macAddress;
125     }
126
127     public String getWorkshopCode() {
128         return workshopCode;
129     }
130
131     public void setWorkshopCode(String workshopCode) {
132         this.workshopCode = workshopCode;
133     }
134
135     public String getWorkshopName() {
136         return workshopName;
137     }
138
139     public void setWorkshopName(String workshopName) {
140         this.workshopName = workshopName;
141     }
142
143     public String getLineCode() {
144         return lineCode;
145     }
146
147     public void setLineCode(String lineCode) {
148         this.lineCode = lineCode;
149     }
150
151     public String getLineName() {
152         return lineName;
153     }
154
155     public void setLineName(String lineName) {
156         this.lineName = lineName;
157     }
158
159     public String getLocationCode() {
160         return locationCode;
161     }
162
163     public void setLocationCode(String locationCode) {
164         this.locationCode = locationCode;
165     }
166
167     public String getLocationName() {
168         return locationName;
169     }
170
171     public void setLocationName(String locationName) {
172         this.locationName = locationName;
173     }
174
175     public String getWarehouseCode() {
176         return warehouseCode;
177     }
178
179     public void setWarehouseCode(String warehouseCode) {
180         this.warehouseCode = warehouseCode;
181     }
182
183     public String getWarehouseName() {
184         return warehouseName;
185     }
186
187     public void setWarehouseName(String warehouseName) {
188         this.warehouseName = warehouseName;
189     }
190
191     @Override
192     public String toString() {
193         return "KanbanConf{" +
194         "id=" + id +
195         ", pageCode=" + pageCode +
196         ", ipAddress=" + ipAddress +
197         ", macAddress=" + macAddress +
198         ", workshopCode=" + workshopCode +
199         ", workshopName=" + workshopName +
200         ", lineCode=" + lineCode +
201         ", lineName=" + lineName +
202         ", locationCode=" + locationCode +
203         ", locationName=" + locationName +
204         ", warehouseCode=" + warehouseCode +
205         ", warehouseName=" + warehouseName +
206         "}";
207     }
208 }