huang
2025-11-25 19f59c243e8df97c8b9fd9dba4e758be8235d68b
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
package com.mes.erp;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
 
/**
 * @Author : zhoush
 * @Date: 2025/8/7 9:50
 * @Description:
 */
@Data
public class RawInventory {
 
    /**
     * 宽度
     */
    @JsonProperty("width")
    private Double rawWidth;
    /**
     * 高度
     */
    @JsonProperty("height")
    private Double rawHeight;
    /**
     * 厚度
     */
    @JsonProperty("thickness")
    private Double rawThickness;
    /**
     * 膜系
     */
    @JsonProperty("model")
    private String filmsId;
    /**
     * 数量
     */
    @JsonProperty("quantity")
    private Integer remainQuantity;
 
    /**
     * 名称
     */
    @JsonProperty("name")
    private String manufacturer;
 
    /**
     * 原片编号
     */
    @JsonProperty("materialCode")
    private String rawNumber;
}