-
admin
9 小时以前 41afb20b6b3776f1242ce2aba29d8e51fa8110d6
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
package com.billion.main.da.domain;
 
import com.billion.common.annotation.Excel;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
 
import java.util.Date;
 
/**
 * 拧紧采集对象 da_tighten_collection
 * 
 * @author Yi
 * @date 2025-05-06
 */
public class DaTightenCollection
{
    private static final long serialVersionUID = 1L;
 
    /** 主键id */
    private Long id;
 
    /** 总成序列号 */
    @Excel(name = "总成序列号")
    private String sfcCode;
 
    /** 工位编码 */
    @Excel(name = "工位编码")
    private String locationCode;
 
    /** 参数集编码 */
    @Excel(name = "参数集编码")
    private String paramSetCode;
 
    /** 参数集名称 */
    @Excel(name = "参数集名称")
    private String paramSetName;
 
    /** 扭矩值 */
    @Excel(name = "扭矩值")
    private String torque;
 
    /** 扭矩状态 */
    @Excel(name = "扭矩状态")
    private String torqueStatus;
 
    /** 角度值 */
    @Excel(name = "角度值")
    private String angle;
 
    /** 角度状态 */
    @Excel(name = "角度状态")
    private String angleStatus;
 
    /** 采集时间 */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Excel(name = "采集时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
    private Date collectTime;
 
    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 setLocationCode(String locationCode) 
    {
        this.locationCode = locationCode;
    }
 
    public String getLocationCode() 
    {
        return locationCode;
    }
    public void setParamSetCode(String paramSetCode) 
    {
        this.paramSetCode = paramSetCode;
    }
 
    public String getParamSetCode() 
    {
        return paramSetCode;
    }
    public void setParamSetName(String paramSetName) 
    {
        this.paramSetName = paramSetName;
    }
 
    public String getParamSetName() 
    {
        return paramSetName;
    }
    public void setTorque(String torque) 
    {
        this.torque = torque;
    }
 
    public String getTorque() 
    {
        return torque;
    }
    public void setTorqueStatus(String torqueStatus) 
    {
        this.torqueStatus = torqueStatus;
    }
 
    public String getTorqueStatus() 
    {
        return torqueStatus;
    }
    public void setAngle(String angle) 
    {
        this.angle = angle;
    }
 
    public String getAngle() 
    {
        return angle;
    }
    public void setAngleStatus(String angleStatus) 
    {
        this.angleStatus = angleStatus;
    }
 
    public String getAngleStatus() 
    {
        return angleStatus;
    }
 
    public Date getCollectTime() {
        return collectTime;
    }
 
    public void setCollectTime(Date collectTime) {
        this.collectTime = collectTime;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("sfcCode", getSfcCode())
            .append("locationCode", getLocationCode())
            .append("paramSetCode", getParamSetCode())
            .append("paramSetName", getParamSetName())
            .append("torque", getTorque())
            .append("torqueStatus", getTorqueStatus())
            .append("angle", getAngle())
            .append("angleStatus", getAngleStatus())
            .append("collectTime", getCollectTime())
            .toString();
    }
}