cl
2024-01-16 cf6bff3922bbd0624b98834f6ea85c8e619e564f
提交 | 用户 | 时间
71e81e 1 package cn.stylefeng.guns.modular.rm.recipeManage.model.result;
2
3 import lombok.Data;
4 import java.util.Date;
5 import java.io.Serializable;
6 import java.math.BigDecimal;
7
8 /**
9  * <p>
10  * 配方管理
11  * </p>
12  *
13  * @author ruimin
14  * @since 2023-08-04
15  */
16 @Data
17 public class RecipeManageResult implements Serializable {
18
19     private static final long serialVersionUID = 1L;
20
21
22     /**
23      * id
24      */
25     private Long id;
26
27     /**
28      * 产线
29      */
30     private String productionLine;
31
32     private String stepSortFlag;
33
34     /**
35      * 工位
36      */
37     private String locationCode;
38
39     /**
40      * 产品编号
41      */
42     private String productCode;
43
44     /**
45      * 操作内容
46      */
47     private String operationSteps;
48
49     /**
50      * 技术要求
51      */
52     private String techRequirement;
53
54     /**
55      * 类型(扫描产品条码1、扫描物料条码2、拧紧类3)
56      */
57     private String operationType;
58
59     /**
60      * 排序
61      */
62     private String stepSort;
63
64     /**
65      * 参数编码
66      */
67     private String paramCode;
68
69     /**
70      * 物料编码
71      */
72     private String materialCode;
73
74     /**
75      * 图片
76      */
77     private String picture;
78
79     /**
80      * 备注
81      */
82     private String remarks;
83
84     /**
85      * 预留字段1
86      */
87     private String spareField1;
88
89     /**
90      * 预留字段2
91      */
92     private String spareField2;
93
94     /**
95      * 预留字段3
96      */
97     private String spareField3;
98
99     /**
100      * 预留字段4
101      */
102     private String spareField4;
103
104 }