liuxiaolong
2019-05-09 0d1d88cdb668e75ea8609417ac18ae19947e9525
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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
package com.landy.gum.report.query;
 
import java.util.Date;
 
import javax.persistence.Column;
import javax.persistence.Entity;
 
import com.landy.framework.core.query.BaseQueryItem;
 
@Entity
public class InOutReturnSummaryReportQueryItem extends BaseQueryItem {
 
    private String bbprSn;
    private String bbprName;
    private String bbprEnName;
    private String bbprUnit;
    private String bbprStyle;
    private String bbprBrand;
    private Double bbprSize;
    private Double bbprSalePrice;
    private String bbbrName;
    private String cgenEntryType;
    private Date cgenEntryDate;
    private Double cgedPrice;
    private Double entrySize;
    private Double outSize;
    private Double returnSize;
    private Double costPrice;
    private Double costTotal;
    private String warehouse;
    private String businessType;
 
    @Column(name = "bbpr_sn")
    public String getBbprSn() {
        return bbprSn;
    }
 
    public void setBbprSn(String bbprSn) {
        this.bbprSn = bbprSn;
        addValidField("bbprSn");
    }
 
    @Column(name = "bbpr_name")
    public String getBbprName() {
        return bbprName;
    }
 
    public void setBbprName(String bbprName) {
        this.bbprName = bbprName;
        addValidField("bbprName");
    }
 
    @Column(name = "bbpr_en_name")
    public String getBbprEnName() {
        return bbprEnName;
    }
 
    public void setBbprEnName(String bbprEnName) {
        this.bbprEnName = bbprEnName;
        addValidField("bbprEnName");
    }
 
    @Column(name = "bbpr_unit")
    public String getBbprUnit() {
        return bbprUnit;
    }
 
    public void setBbprUnit(String bbprUnit) {
        this.bbprUnit = bbprUnit;
        addValidField("bbprUnit");
    }
 
    @Column(name = "bbpr_style")
    public String getBbprStyle() {
        return bbprStyle;
    }
 
    public void setBbprStyle(String bbprStyle) {
        this.bbprStyle = bbprStyle;
        addValidField("bbprStyle");
    }
 
    @Column(name = "bbpr_brand")
    public String getBbprBrand() {
        return bbprBrand;
    }
 
    public void setBbprBrand(String bbprBrand) {
        this.bbprBrand = bbprBrand;
        addValidField("bbprBrand");
    }
 
    @Column(name = "bbpr_size")
    public Double getBbprSize() {
        return bbprSize;
    }
 
    public void setBbprSize(Double bbprSize) {
        this.bbprSize = bbprSize;
        addValidField("bbprSize");
    }
 
    @Column(name = "bbpr_sale_price")
    public Double getBbprSalePrice() {
        return bbprSalePrice;
    }
 
    public void setBbprSalePrice(Double bbprSalePrice) {
        this.bbprSalePrice = bbprSalePrice;
        addValidField("bbprSalePrice");
    }
 
    @Column(name = "bbbr_name")
    public String getBbbrName() {
        return bbbrName;
    }
 
    public void setBbbrName(String bbbrName) {
        this.bbbrName = bbbrName;
        addValidField("bbbrName");
    }
 
    @Column(name = "cgen_entry_type")
    public String getCgenEntryType() {
        return cgenEntryType;
    }
 
    public void setCgenEntryType(String cgenEntryType) {
        this.cgenEntryType = cgenEntryType;
        addValidField("cgenEntryType");
    }
 
    @Column(name = "cgen_entry_date")
    public Date getCgenEntryDate() {
        return cgenEntryDate;
    }
 
    public void setCgenEntryDate(Date cgenEntryDate) {
        this.cgenEntryDate = cgenEntryDate;
        addValidField("cgenEntryDate");
    }
 
    @Column(name = "cged_price")
    public Double getCgedPrice() {
        return cgedPrice;
    }
 
    public void setCgedPrice(Double cgedPrice) {
        this.cgedPrice = cgedPrice;
        addValidField("cgedPrice");
    }
 
    @Column(name = "entry_size")
    public Double getEntrySize() {
        return entrySize;
    }
 
    public void setEntrySize(Double entrySize) {
        this.entrySize = entrySize;
        addValidField("entrySize");
    }
 
    @Column(name = "out_size")
    public Double getOutSize() {
        return outSize;
    }
 
    public void setOutSize(Double outSize) {
        this.outSize = outSize;
        addValidField("outSize");
    }
 
    @Column(name = "return_size")
    public Double getReturnSize() {
        return returnSize;
    }
 
    public void setReturnSize(Double returnSize) {
        this.returnSize = returnSize;
        addValidField("returnSize");
    }
 
    @Column(name = "cost_price")
    public Double getCostPrice() {
        return costPrice;
    }
 
    public void setCostPrice(Double costPrice) {
        this.costPrice = costPrice;
        addValidField("costPrice");
    }
 
    @Column(name = "cost_total")
    public Double getCostTotal() {
        return costTotal;
    }
 
    public void setCostTotal(Double costTotal) {
        this.costTotal = costTotal;
        addValidField("costTotal");
    }
 
    @Column(name = "warehouse")
    public String getWarehouse() {
        return warehouse;
    }
 
    public void setWarehouse(String warehouse) {
        this.warehouse = warehouse;
        addValidField("warehouse");
    }
 
    @Column(name = "business_type")
    public String getBusinessType() {
        return businessType;
    }
 
    public void setBusinessType(String businessType) {
        this.businessType = businessType;
        addValidField("businessType");
    }
 
}