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