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
package com.landy.gum.out.query;
 
import javax.persistence.Column;
import javax.persistence.Entity;
 
import com.landy.framework.core.query.BaseQueryItem;
 
@Entity
public class PsCenterUpListQueryItem extends BaseQueryItem {
 
    private String bbprId;
    private String bbprSn;
    private String bbprName;
    private String bbprBrand;
    private String bbprLeiXing;
    private Double bbprSize;
    private Double ouqdSize;
    private Double ouqdSendSize;
    private Double processSize;
    private Integer weiwan;
    private Double xuQiuSumSize;
    private Long color;
 
    @Column(name = "bbpr_id")
    public String getBbprId() {
        return bbprId;
    }
 
    public void setBbprId(String bbprId) {
        this.bbprId = bbprId;
        addValidField("bbprId");
    }
 
    @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_brand")
    public String getBbprBrand() {
        return bbprBrand;
    }
 
    public void setBbprBrand(String bbprBrand) {
        this.bbprBrand = bbprBrand;
        addValidField("bbprBrand");
    }
 
    @Column(name = "bbpr_lei_xing")
    public String getBbprLeiXing() {
        return bbprLeiXing;
    }
 
    public void setBbprLeiXing(String bbprLeiXing) {
        this.bbprLeiXing = bbprLeiXing;
        addValidField("bbprLeiXing");
    }
 
    @Column(name = "bbpr_size")
    public Double getBbprSize() {
        return bbprSize;
    }
 
    public void setBbprSize(Double bbprSize) {
        this.bbprSize = bbprSize;
        addValidField("bbprSize");
    }
 
    @Column(name = "ouqd_size")
    public Double getOuqdSize() {
        return ouqdSize;
    }
 
    public void setOuqdSize(Double ouqdSize) {
        this.ouqdSize = ouqdSize;
        addValidField("ouqdSize");
    }
 
    @Column(name = "ouqd_send_size")
    public Double getOuqdSendSize() {
        return ouqdSendSize;
    }
 
    public void setOuqdSendSize(Double ouqdSendSize) {
        this.ouqdSendSize = ouqdSendSize;
        addValidField("ouqdSendSize");
    }
 
    @Column(name = "process_size")
    public Double getProcessSize() {
        return processSize;
    }
 
    public void setProcessSize(Double processSize) {
        this.processSize = processSize;
        addValidField("processSize");
    }
 
    @Column(name = "weiwan")
    public Integer getWeiwan() {
        return weiwan;
    }
 
    public void setWeiwan(Integer weiwan) {
        this.weiwan = weiwan;
        addValidField("weiwan");
    }
 
    @Column(name = "xu_qiu_sum_size")
    public Double getXuQiuSumSize() {
        return xuQiuSumSize;
    }
 
    public void setXuQiuSumSize(Double xuQiuSumSize) {
        this.xuQiuSumSize = xuQiuSumSize;
        addValidField("xuQiuSumSize");
    }
 
    @Column(name = "color")
    public Long getColor() {
        return color;
    }
 
    public void setColor(Long color) {
        this.color = color;
        addValidField("color");
    }
 
}