严智鑫
2024-07-12 c3889b92e80992524e0f60371edf775ca7e28922
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
194
195
196
197
198
199
200
201
202
203
204
package com.mes.rawusage.entity;
 
import java.io.Serializable;
import java.util.Date;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
/**
 *  
 *
 * @author system
 * @since 2024-07-09 14:51:27
 */
@TableName("raw_usage")
@ApiModel(value = "RawUsage", description = " ")
public class RawUsage implements Serializable{
 
    private static final long serialVersionUID=1L;
 
    /**
     *   
     */
    @ApiModelProperty(" ")
    private Long id;
 
    /**
     *  玻璃类型
     */
    @ApiModelProperty("玻璃类型")
    private String rawType;
 
    /**
     *  宽度
     */
    @ApiModelProperty("宽度")
    private Float rawWidth;
 
    /**
     *  高度
     */
    @ApiModelProperty("高度")
    private Float rawHeight;
 
    /**
     *  厚度
     */
    @ApiModelProperty("厚度")
    private Float rawThickness;
 
    /**
     *  状态
     */
    @ApiModelProperty("状态")
    private String state;
 
    /**
     *  颜色
     */
    @ApiModelProperty("颜色")
    private String color;
 
    /**
     *  总数量
     */
    @ApiModelProperty("总数量")
    private Integer pieces;
 
    /**
     *  剩余数量
     */
    @ApiModelProperty("剩余数量")
    private Integer leftPieces;
 
    /**
     *  物料编码
     */
    @ApiModelProperty("物料编码")
    private String qrcode;
 
    /**
     *  创建时间
     */
    @ApiModelProperty("创建时间")
    private Date createTime;
 
    /**
     *  生产日期
     */
    @ApiModelProperty("生产日期")
    private Date productionTime;
 
    /**
     *  批次号
     */
    @ApiModelProperty("批次号")
    private String batchId;
 
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getRawType() {
        return rawType;
    }
 
    public void setRawType(String rawType) {
        this.rawType = rawType;
    }
 
    public Float getRawWidth() {
        return rawWidth;
    }
 
    public void setRawWidth(Float rawWidth) {
        this.rawWidth = rawWidth;
    }
 
    public Float getRawHeight() {
        return rawHeight;
    }
 
    public void setRawHeight(Float rawHeight) {
        this.rawHeight = rawHeight;
    }
 
    public Float getRawThickness() {
        return rawThickness;
    }
 
    public void setRawThickness(Float rawThickness) {
        this.rawThickness = rawThickness;
    }
 
    public String getState() {
        return state;
    }
 
    public void setState(String state) {
        this.state = state;
    }
 
    public String getColor() {
        return color;
    }
 
    public void setColor(String color) {
        this.color = color;
    }
 
    public Integer getPieces() {
        return pieces;
    }
 
    public void setPieces(Integer pieces) {
        this.pieces = pieces;
    }
 
    public Integer getLeftPieces() {
        return leftPieces;
    }
 
    public void setLeftPieces(Integer leftPieces) {
        this.leftPieces = leftPieces;
    }
 
    public String getQrcode() {
        return qrcode;
    }
 
    public void setQrcode(String qrcode) {
        this.qrcode = qrcode;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public Date getProductionTime() {
        return productionTime;
    }
 
    public void setProductionTime(Date productionTime) {
        this.productionTime = productionTime;
    }
 
    public String getBatchId() {
        return batchId;
    }
 
    public void setBatchId(String batchId) {
        this.batchId = batchId;
    }
 
}