懒羊羊
2024-01-10 a556270e96bc6e7fa4202c466d57cc75f778c614
提交 | 用户 | 时间
71e81e 1 package cn.stylefeng.guns.modular.bs.bomInfo.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  * bom信息
12  * </p>
13  *
14  * @author 
15  * @since 2022-10-24
16  */
17 @Data
18 public class BomInfoParam 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 materialCode;
32
33     /**
34      * 物料名称
35      */
36     private String materialName;
37
38     /**
39      * 产品编号
40      */
41     private String productCode;
42
43     /**
44      * 产品名称
45      */
46     private String productName;
47
48     /**
49      * 工位编号
50      */
51     private String locationCode;
52
53     /**
54      * 工位名称
55      */
56     private String locationName;
57
58     private String loadingCode;
59     private String loadingName;
60     private String workorderNo;
61     private String scanningCodeFlag;
62
63
64     /**
65      * 追溯类型
66      */
67     private String traceabilityType;
68
69     /**
70      * 数量
71      */
72     private Long quantity;
73
74     /**
75      * 备注
76      */
77     private String remarks;
78
a55627 79     private String lineCode;
80
81
71e81e 82     @Override
83     public String checkParam() {
84         return null;
85     }
86
87     public Long getId() {
88         return id;
89     }
90     public String getLoadingCode() {
91         return loadingCode;
92     }
93
94     public void setLoadingCode(String loadingCode) {
95         this.loadingCode = loadingCode;
96     }
97
98     public String getLoadingName() {
99         return loadingName;
100     }
101
102     public void setLoadingName(String loadingName) {
103         this.loadingName = loadingName;
104     }
105     public void setId(Long id) {
106         this.id = id;
107     }
108
109     public String getMaterialCode() {
110         return materialCode;
111     }
112
113     public void setMaterialCode(String materialCode) {
114         this.materialCode = materialCode;
115     }
116
117     public String getMaterialName() {
118         return materialName;
119     }
120
121     public void setMaterialName(String materialName) {
122         this.materialName = materialName;
123     }
124
125     public String getProductCode() {
126         return productCode;
127     }
128
129     public void setProductCode(String productCode) {
130         this.productCode = productCode;
131     }
132
133     public String getProductName() {
134         return productName;
135     }
136
137     public void setProductName(String productName) {
138         this.productName = productName;
139     }
140
141     public String getLocationCode() {
142         return locationCode;
143     }
144
145     public void setLocationCode(String locationCode) {
146         this.locationCode = locationCode;
147     }
148
149     public String getLocationName() {
150         return locationName;
151     }
152
153     public void setLocationName(String locationName) {
154         this.locationName = locationName;
155     }
156
157     public String getTraceabilityType() {
158         return traceabilityType;
159     }
160
161     public void setTraceabilityType(String traceabilityType) {
162         this.traceabilityType = traceabilityType;
163     }
164
165     public Long getQuantity() {
166         return quantity;
167     }
168
169     public void setQuantity(Long quantity) {
170         this.quantity = quantity;
171     }
172
173     public String getRemarks() {
174         return remarks;
175     }
176
177     public void setRemarks(String remarks) {
178         this.remarks = remarks;
179     }
180 }