guoyujie
2 天以前 c4b9a339caff12e95f61c3d5dc950aafcc8c566c
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
package com.example.erp.entity.pp;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
 
public class LayoutsData {
    @JsonProperty("Layouts")
    private List<Layout> layouts;
 
    public List<Layout> getLayouts() {
        return layouts;
    }
 
 
public static  class Layout  {
    @JsonProperty("mnumber")
    private int mNumber;
    @JsonProperty("width")
    private int width;
    @JsonProperty("rects")
    private List<Rect> rects;
    @JsonProperty("wuliao")
    private String material;
    @JsonProperty("SameCount")
    private int sameCount;
    @JsonProperty("height")
    private int height;
 
    public int getWidth() {
        return width;
    }
    public int getSameCount() {
        return sameCount;
    }
    public String getWuliao() {
        return material;
    }
 
    public int getHeight() {
        return height;
    }
 
    public List<Rect> getRects() {
        return rects;
    }
}
 
public static  class Rect {
    @JsonProperty("isRemain")
    private boolean isRemain;
    @JsonProperty("h")
    private int h;
    @JsonProperty("DM2")
    private int dm2;
    @JsonProperty("xuhao")
    private String serialNumber;
    @JsonProperty("DM1")
    private int dm1;
    @JsonProperty("liuchengka")
    private String processCard;
    @JsonProperty("JiaHao")
    private String jiaHao;
    @JsonProperty("LM2")
    private int lm2;
    @JsonProperty("LM1")
    private int lm1;
    @JsonProperty("w")
    private int W;
    @JsonProperty("x")
    private int x;
    @JsonProperty("y")
    private int y;
    @JsonProperty("rownumber")
    private int rowNumber;
 
    public int getWidth() {
        return W;
    }
 
    public int getHeight() {
        return h;
    }
 
 
    public String getProcessCard() {
        return processCard;
    }
 
    public int getW() {
        return W;
    }
 
    public int getX() {
        return x;
    }
 
    public int getY() {
        return y;
    }
 
    public String getJiaHao() {
        return jiaHao;
    }
 
    public int getH() {
        return h;
    }
 
    public boolean isRemain() {
        return isRemain;
    }
}
}