李林
2023-10-07 658d4927d468c47208fd012d9128b09249c07eff
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
package com.chinaztt.mes.mould.dto;
 
import javax.persistence.Column;
import java.math.BigDecimal;
 
/**
 * @Author: Zero
 * @Date: 2022/12/2 09:59
 * @Description:
 */
public class ZttMouldDTO {
    private String mouldCode;       //模具编码
    private String mouldName;       //模具名称
    private String serialNumber;    //流水号
    private String mouldDrawingNo;  //模具图号
    private String procedureNumber; //工序
    private String machineNumber;   //机台
    private String machineNum;      //机台
    private String machineName;     //机台
    private String productSpec;     //产品规格
    private String plateNumber;     //盘号
    private BigDecimal lifeValue;       //寿命变化值,默认为寿命的减少值
    private String productionDate;  //生产日期
    private String buildMaker;      //制造人
    private String groupName;       //机构名称
    private String operatorMan;
    private String teamName;
    private String shiftsName;
    private String mouldSpec;       //模具规格
 
    @Column(name = "MouldCode")
    public String getMouldCode() {
        return mouldCode;
    }
 
    public void setMouldCode(String mouldCode) {
        this.mouldCode = mouldCode;
    }
 
    @Column(name = "MouldName")
    public String getMouldName() {
        return mouldName;
    }
 
    public void setMouldName(String mouldName) {
        this.mouldName = mouldName;
    }
 
    @Column(name = "SerialNumber")
    public String getSerialNumber() {
        return serialNumber;
    }
 
    public void setSerialNumber(String serialNumber) {
        this.serialNumber = serialNumber;
    }
 
    @Column(name = "ProcedureNumber")
    public String getProcedureNumber() {
        return procedureNumber;
    }
 
    public void setProcedureNumber(String procedureNumber) {
        this.procedureNumber = procedureNumber;
    }
 
    @Column(name = "MachineNumber")
    public String getMachineNumber() {
        return machineNumber;
    }
 
    public void setMachineNumber(String machineNumber) {
        this.machineNumber = machineNumber;
    }
 
    @Column(name = "ProductSpec")
    public String getProductSpec() {
        return productSpec;
    }
 
    public void setProductSpec(String productSpec) {
        this.productSpec = productSpec;
    }
 
    @Column(name = "PlateNumber")
    public String getPlateNumber() {
        return plateNumber;
    }
 
    public void setPlateNumber(String plateNumber) {
        this.plateNumber = plateNumber;
    }
 
    @Column(name = "LifeValue")
    public BigDecimal getLifeValue() {
        return lifeValue;
    }
 
    public void setLifeValue(BigDecimal lifeValue) {
        this.lifeValue = lifeValue;
    }
 
    @Column(name = "ProductionDate")
    public String getProductionDate() {
        return productionDate;
    }
 
    public void setProductionDate(String productionDate) {
        this.productionDate = productionDate;
    }
 
    @Column(name = "BuildMaker")
    public String getBuildMaker() {
        return buildMaker;
    }
 
    public void setBuildMaker(String buildMaker) {
        this.buildMaker = buildMaker;
    }
 
    @Column(name = "GroupName")
    public String getGroupName() {
        return groupName;
    }
 
    public void setGroupName(String groupName) {
        this.groupName = groupName;
    }
 
    @Column(name = "MachineName")
    public String getMachineName() {
        return machineName;
    }
 
    public void setMachineName(String machineName) {
        this.machineName = machineName;
    }
 
    @Column(name = "operatorMan")
    public String getOperatorMan() {
        return operatorMan;
    }
 
    public void setOperatorMan(String operatorMan) {
        this.operatorMan = operatorMan;
    }
 
    @Column(name = "TeamName")
    public String getTeamName() {
        return teamName;
    }
 
    public void setTeamName(String teamName) {
        this.teamName = teamName;
    }
 
    @Column(name = "ShiftsName")
    public String getShiftsName() {
        return shiftsName;
    }
 
    public void setShiftsName(String shiftsName) {
        this.shiftsName = shiftsName;
    }
 
    @Column(name = "MachineNum")
    public String getMachineNum() {
        return machineNum;
    }
 
    public void setMachineNum(String machineNum) {
        this.machineNum = machineNum;
    }
 
 
    @Column(name = "MouldSpec")
    public String getMouldSpec() {
        return mouldSpec;
    }
 
    public void setMouldSpec(String mouldSpec) {
        this.mouldSpec = mouldSpec;
    }
 
    @Column(name = "MouldDrawingNo")
    public String getMouldDrawingNo() {
        return mouldDrawingNo;
    }
 
    public void setMouldDrawingNo(String mouldDrawingNo) {
        this.mouldDrawingNo = mouldDrawingNo;
    }
}