春风项目四线(合箱线、总装线)
yyt
6 天以前 dd44823b3c6cc003de21ea023cea7ea8d85a873c
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
package com.jcdm.main.da.tileMatchCollection.domain;
 
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.jcdm.common.annotation.Excel;
import com.jcdm.common.core.domain.BaseEntity;
 
/**
 * 条码采集对象 da_tile_match_collection
 * 
 * @author yyt
 * @date 2024-06-06
 */
public class DaTileMatchCollection extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** id */
    private Long id;
 
    /** 发动机号 */
    @Excel(name = "发动机号")
    private String sfcCode;
 
    /** 零件编号 */
    @Excel(name = "零件编号")
    private String paramCode;
 
    /** 零件名称 */
    @Excel(name = "零件名称")
    private String paramName;
 
    /** 备注 */
    @Excel(name = "备注")
    private String remarks;
 
    /** 工序编号 */
    @Excel(name = "工序编号")
    private String locationCode;
 
    /** 条码 */
    @Excel(name = "条码")
    private String paramValue;
 
    public void setId(Long id) 
    {
        this.id = id;
    }
 
    public Long getId() 
    {
        return id;
    }
    public void setSfcCode(String sfcCode) 
    {
        this.sfcCode = sfcCode;
    }
 
    public String getSfcCode() 
    {
        return sfcCode;
    }
    public void setParamCode(String paramCode) 
    {
        this.paramCode = paramCode;
    }
 
    public String getParamCode() 
    {
        return paramCode;
    }
    public void setParamName(String paramName) 
    {
        this.paramName = paramName;
    }
 
    public String getParamName() 
    {
        return paramName;
    }
    public void setRemarks(String remarks) 
    {
        this.remarks = remarks;
    }
 
    public String getRemarks() 
    {
        return remarks;
    }
    public void setLocationCode(String locationCode) 
    {
        this.locationCode = locationCode;
    }
 
    public String getLocationCode() 
    {
        return locationCode;
    }
 
    public void setParamValue(String paramValue)
    {
        this.paramValue = paramValue;
    }
 
    public String getParamValue()
    {
        return paramValue;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("sfcCode", getSfcCode())
            .append("paramCode", getParamCode())
            .append("paramName", getParamName())
            .append("createTime", getCreateTime())
            .append("remarks", getRemarks())
            .append("locationCode", getLocationCode())
            .append("paramValue", getParamValue())
            .toString();
    }
}