严智鑫
2025-11-13 945bc394f40d8af1072a53da9a94f24207124e6d
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
package com.northglass.entity;
 
import javax.persistence.Entity;
import javax.persistence.Table;
import javax.persistence.Transient;
 
import com.northglass.listener.ServerConnection;
 
@Entity
@Table(name="gmms_print_size")
public class PrintSize extends IdEntity {
 
    private int apartidsize;
    private int apartidw;
    private int apartidh;
    private int customersize;
    private int customerw;
    private int customerh;
    private int productionsize;
    private int productionw;
    private int productionh;
    private int lengthStrsize;
    private int lengthStrw;
    private int lengthStrh;
    private int applicationsize;
    private int applicationw;
    private int applicationh;
    private int length;
    private int width;
    
    public PrintSize(){
    }
    
    private ServerConnection serverConnection = new ServerConnection();
    
 
    @Transient
    public ServerConnection getServerConnection() {
        return serverConnection;
    }
 
    public void setServerConnection(ServerConnection serverConnection) {
        this.serverConnection = serverConnection;
    }
 
    public int getApartidsize() {
        return apartidsize;
    }
 
    public void setApartidsize(int apartidsize) {
        this.apartidsize = apartidsize;
    }
 
    public int getApartidw() {
        return apartidw;
    }
 
    public void setApartidw(int apartidw) {
        this.apartidw = apartidw;
    }
 
    public int getApartidh() {
        return apartidh;
    }
 
    public void setApartidh(int apartidh) {
        this.apartidh = apartidh;
    }
 
    public int getCustomersize() {
        return customersize;
    }
 
    public void setCustomersize(int customersize) {
        this.customersize = customersize;
    }
 
    public int getCustomerw() {
        return customerw;
    }
 
    public void setCustomerw(int customerw) {
        this.customerw = customerw;
    }
 
    public int getCustomerh() {
        return customerh;
    }
 
    public void setCustomerh(int customerh) {
        this.customerh = customerh;
    }
 
    public int getProductionsize() {
        return productionsize;
    }
 
    public void setProductionsize(int productionsize) {
        this.productionsize = productionsize;
    }
 
    public int getProductionw() {
        return productionw;
    }
 
    public void setProductionw(int productionw) {
        this.productionw = productionw;
    }
 
    public int getProductionh() {
        return productionh;
    }
 
    public void setProductionh(int productionh) {
        this.productionh = productionh;
    }
 
    public int getLengthStrsize() {
        return lengthStrsize;
    }
 
    public void setLengthStrsize(int lengthStrsize) {
        this.lengthStrsize = lengthStrsize;
    }
 
    public int getLengthStrw() {
        return lengthStrw;
    }
 
    public void setLengthStrw(int lengthStrw) {
        this.lengthStrw = lengthStrw;
    }
 
    public int getLengthStrh() {
        return lengthStrh;
    }
 
    public void setLengthStrh(int lengthStrh) {
        this.lengthStrh = lengthStrh;
    }
 
    public int getApplicationsize() {
        return applicationsize;
    }
 
    public void setApplicationsize(int applicationsize) {
        this.applicationsize = applicationsize;
    }
 
    public int getApplicationw() {
        return applicationw;
    }
 
    public void setApplicationw(int applicationw) {
        this.applicationw = applicationw;
    }
 
    public int getApplicationh() {
        return applicationh;
    }
 
    public void setApplicationh(int applicationh) {
        this.applicationh = applicationh;
    }
 
    public int getLength() {
        return length;
    }
 
    public void setLength(int length) {
        this.length = length;
    }
 
    public int getWidth() {
        return width;
    }
 
    public void setWidth(int width) {
        this.width = width;
    }
 
    
}