懒羊羊
2023-11-14 8286c62256f23bc2367a6729c0f46f84215e380b
提交 | 用户 | 时间
8286c6 1 package cn.stylefeng.guns.modular.bs.bomInfo.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  * bom信息
12  * </p>
13  *
14  * @author 
15  * @since 2022-10-24
16  */
17 @TableName("bs_bom_info")
18 public class BomInfo 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("material_code")
32     private String materialCode;
33
34     /**
35      * 物料名称
36      */
37     @TableField("material_name")
38     private String materialName;
39
40     /**
41      * 产品编号
42      */
43     @TableField("product_code")
44     private String productCode;
45
46     /**
47      * 产品名称
48      */
49     @TableField("product_name")
50     private String productName;
51
52     /**
53      * 工位编号
54      */
55     @TableField("location_code")
56     private String locationCode;
57
58     /**
59      * 工位名称
60      */
61     @TableField("location_name")
62     private String locationName;
63
64     /**
65      * 工位编号
66      */
67     @TableField("loading_code")
68     private String loadingCode;
69
70     public String getLoadingCode() {
71         return loadingCode;
72     }
73
74     public void setLoadingCode(String loadingCode) {
75         this.loadingCode = loadingCode;
76     }
77
78     public String getLoadingName() {
79         return loadingName;
80     }
81
82     public void setLoadingName(String loadingName) {
83         this.loadingName = loadingName;
84     }
85
86     /**
87      * 工位名称
88      */
89     @TableField("loading_name")
90     private String loadingName;
91
92     /**
93      * 追溯类型
94      */
95     @TableField("traceability_type")
96     private String traceabilityType;
97
98     /**
99      * 数量
100      */
101     @TableField("quantity")
102     private Long quantity;
103
104     /**
105      * 备注
106      */
107     @TableField("remarks")
108     private String remarks;
109
110
111     public Long getId() {
112         return id;
113     }
114
115     public void setId(Long id) {
116         this.id = id;
117     }
118
119     public String getMaterialCode() {
120         return materialCode;
121     }
122
123     public void setMaterialCode(String materialCode) {
124         this.materialCode = materialCode;
125     }
126
127     public String getMaterialName() {
128         return materialName;
129     }
130
131     public void setMaterialName(String materialName) {
132         this.materialName = materialName;
133     }
134
135     public String getProductCode() {
136         return productCode;
137     }
138
139     public void setProductCode(String productCode) {
140         this.productCode = productCode;
141     }
142
143     public String getProductName() {
144         return productName;
145     }
146
147     public void setProductName(String productName) {
148         this.productName = productName;
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
168     public String getTraceabilityType() {
169         return traceabilityType;
170     }
171
172     public void setTraceabilityType(String traceabilityType) {
173         this.traceabilityType = traceabilityType;
174     }
175
176     public Long getQuantity() {
177         return quantity;
178     }
179
180     public void setQuantity(Long quantity) {
181         this.quantity = quantity;
182     }
183
184     public String getRemarks() {
185         return remarks;
186     }
187
188     public void setRemarks(String remarks) {
189         this.remarks = remarks;
190     }
191
192     @Override
193     public String toString() {
194         return "BomInfo{" +
195         "id=" + id +
196         ", materialCode=" + materialCode +
197         ", materialName=" + materialName +
198         ", productCode=" + productCode +
199         ", productName=" + productName +
200                 ", locationCode=" + locationCode +
201                 ", locationName=" + locationName +
202         ", traceabilityType=" + traceabilityType +
203         ", quantity=" + quantity +
204         ", remarks=" + remarks +
205         "}";
206     }
207 }