hdy
4 天以前 51eb318f6df9ebc7d1ff47522e33b2ee7cea1ba8
提交 | 用户 | 时间
fb3b3e 1 package com.billion.main.bs.domain;
2
3 import com.billion.common.annotation.Excel;
4 import com.billion.main.common.BaseEntity;
5 import lombok.Data;
6
7 /**
8  * 配方配置子信息对象 bs_formula_child_info
9  * 
10  * @author Billion
11  * @date 2024-11-26
12  */
13 @Data
14 public class BsFormulaChildInfo extends BaseEntity
15 {
16     /** 配方编码 */
17     @Excel(name = "配方编码")
18     private String formulaCode;
19
20     /** 产线 */
21     @Excel(name = "产线编码")
22     private String lineCode;
23
24     /** 工位编号 */
25     @Excel(name = "工位编号")
26     private String locationCode;
27
28     /** 产品编号 */
29     @Excel(name = "产品编号")
30     private String productCode;
31
32     /** 操作内容 */
33     @Excel(name = "操作内容")
34     private String operationContent;
35
36     /** 操作类型 */
37     @Excel(name = "操作类型", readConverterExp = "1=扫描产品条码,2=拧紧数据采集")
38     private String operationType;
39
40     /** 排序 */
41     @Excel(name = "排序")
42     private Integer stepSort;
43
44     /** 参数编码 */
45     @Excel(name = "参数编码")
46     private String paramCode;
47
48     /** 图片 */
49     private String picture;
50
51     /** 备注 */
52     @Excel(name = "备注")
53     private String remarks;
54
55     /** 采集数据 */
56     private String collectData;
57
58     /** 结果 */
59     private String results;
60
61
62
63
64 }