cl
2024-01-19 e0fac38b26845f25de479783e0c76cf12a5311e0
提交 | 用户 | 时间
71e81e 1 package cn.stylefeng.guns.modular.sc.kanbanConf.model.params;
2
3 import lombok.Data;
4 import cn.stylefeng.roses.kernel.model.validator.BaseValidatingParam;
5 import java.util.Date;
6 import java.io.Serializable;
7 import java.math.BigDecimal;
8
9 /**
10  * <p>
11  * 看板配置
12  * </p>
13  *
14  * @author cl
15  * @since 2022-10-31
16  */
17 @Data
18 public class KanbanConfParam implements Serializable, BaseValidatingParam {
19
20     private static final long serialVersionUID = 1L;
21
22
23     /**
24      * ID
25      */
26     private Long id;
27
28     /**
29      * 页面编号
30      */
31     private String pageCode;
32
33     /**
34      * ip地址
35      */
36     private String ipAddress;
37
38     /**
39      * MAC地址
40      */
41     private String macAddress;
42
43     /**
44      * 车间编号
45      */
46     private String workshopCode;
47
48     /**
49      * 车间名称
50      */
51     private String workshopName;
52
53     /**
54      * 产线编号
55      */
56     private String lineCode;
57
58     /**
59      * 产线名称
60      */
61     private String lineName;
62
63     /**
64      * 工位编码
65      */
66     private String locationCode;
67
68     /**
69      * 工位名称
70      */
71     private String locationName;
72
73     /**
74      * 仓库编号
75      */
76     private String warehouseCode;
77
78     /**
79      * 仓库名称
80      */
81     private String warehouseName;
82
83     private String scrapCategory;
84
85     private String scrapReason;
86
87     public Long getId() {
88         return id;
89     }
90
91     public void setId(Long id) {
92         this.id = id;
93     }
94
95     public String getPageCode() {
96         return pageCode;
97     }
98
99     public void setPageCode(String pageCode) {
100         this.pageCode = pageCode;
101     }
102
103     public String getIpAddress() {
104         return ipAddress;
105     }
106
107     public void setIpAddress(String ipAddress) {
108         this.ipAddress = ipAddress;
109     }
110
111     public String getMacAddress() {
112         return macAddress;
113     }
114
115     public void setMacAddress(String macAddress) {
116         this.macAddress = macAddress;
117     }
118
119     public String getWorkshopCode() {
120         return workshopCode;
121     }
122
123     public void setWorkshopCode(String workshopCode) {
124         this.workshopCode = workshopCode;
125     }
126
127     public String getWorkshopName() {
128         return workshopName;
129     }
130
131     public void setWorkshopName(String workshopName) {
132         this.workshopName = workshopName;
133     }
134
135     public String getLineCode() {
136         return lineCode;
137     }
138
139     public void setLineCode(String lineCode) {
140         this.lineCode = lineCode;
141     }
142
143     public String getLineName() {
144         return lineName;
145     }
146
147     public void setLineName(String lineName) {
148         this.lineName = lineName;
149     }
150
151     public String getLocationCode() {
152         return locationCode;
153     }
154
155     public void setLocationCode(String locationCode) {
156         this.locationCode = locationCode;
157     }
158
159     public String getLocationName() {
160         return locationName;
161     }
162
163     public void setLocationName(String locationName) {
164         this.locationName = locationName;
165     }
166
167     public String getWarehouseCode() {
168         return warehouseCode;
169     }
170
171     public void setWarehouseCode(String warehouseCode) {
172         this.warehouseCode = warehouseCode;
173     }
174
175     public String getWarehouseName() {
176         return warehouseName;
177     }
178
179     public void setWarehouseName(String warehouseName) {
180         this.warehouseName = warehouseName;
181     }
182
183     @Override
184     public String checkParam() {
185         return null;
186     }
187
188 }