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
package com.landy.gum.inout.query;
 
import java.util.Date;
 
import javax.persistence.Column;
import javax.persistence.Entity;
 
import com.landy.framework.core.query.BaseQueryItem;
 
@Entity
public class StuffPickQueryItem extends BaseQueryItem {
 
    private Integer iospId;
    private String iospSn;
    private Double iospSize;
    private String iospVolumes;
    private Double iospPickOutSize;
    private String iospType;
    private Date createTime;
    private String iospRemark;
    private Double iospPickInSize;
    private String creator;
    private Integer bbstId;
    private String bbstName;
    private String bbstStyle;
    private String bbstType;
 
    @Column(name = "iosp_id")
    public Integer getIospId() {
        return iospId;
    }
 
    public void setIospId(Integer iospId) {
        this.iospId = iospId;
        addValidField("iospId");
    }
 
    @Column(name = "iosp_sn")
    public String getIospSn() {
        return iospSn;
    }
 
    public void setIospSn(String iospSn) {
        this.iospSn = iospSn;
        addValidField("iospSn");
    }
 
    @Column(name = "iosp_size")
    public Double getIospSize() {
        return iospSize;
    }
 
    public void setIospSize(Double iospSize) {
        this.iospSize = iospSize;
        addValidField("iospSize");
    }
 
    @Column(name = "iosp_volumes")
    public String getIospVolumes() {
        return iospVolumes;
    }
 
    public void setIospVolumes(String iospVolumes) {
        this.iospVolumes = iospVolumes;
        addValidField("iospVolumes");
    }
 
    @Column(name = "iosp_pick_out_size")
    public Double getIospPickOutSize() {
        return iospPickOutSize;
    }
 
    public void setIospPickOutSize(Double iospPickOutSize) {
        this.iospPickOutSize = iospPickOutSize;
        addValidField("iospPickOutSize");
    }
 
    @Column(name = "iosp_type")
    public String getIospType() {
        return iospType;
    }
 
    public void setIospType(String iospType) {
        this.iospType = iospType;
        addValidField("iospType");
    }
 
    @Column(name = "create_time")
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
        addValidField("createTime");
    }
 
    @Column(name = "iosp_remark")
    public String getIospRemark() {
        return iospRemark;
    }
 
    public void setIospRemark(String iospRemark) {
        this.iospRemark = iospRemark;
        addValidField("iospRemark");
    }
 
    @Column(name = "iosp_pick_in_size")
    public Double getIospPickInSize() {
        return iospPickInSize;
    }
 
    public void setIospPickInSize(Double iospPickInSize) {
        this.iospPickInSize = iospPickInSize;
        addValidField("iospPickInSize");
    }
 
    @Column(name = "creator")
    public String getCreator() {
        return creator;
    }
 
    public void setCreator(String creator) {
        this.creator = creator;
        addValidField("creator");
    }
 
    @Column(name = "bbst_id")
    public Integer getBbstId() {
        return bbstId;
    }
 
    public void setBbstId(Integer bbstId) {
        this.bbstId = bbstId;
        addValidField("bbstId");
    }
 
    @Column(name = "bbst_name")
    public String getBbstName() {
        return bbstName;
    }
 
    public void setBbstName(String bbstName) {
        this.bbstName = bbstName;
        addValidField("bbstName");
    }
 
    @Column(name = "bbst_style")
    public String getBbstStyle() {
        return bbstStyle;
    }
 
    public void setBbstStyle(String bbstStyle) {
        this.bbstStyle = bbstStyle;
        addValidField("bbstStyle");
    }
 
    @Column(name = "bbst_type")
    public String getBbstType() {
        return bbstType;
    }
 
    public void setBbstType(String bbstType) {
        this.bbstType = bbstType;
        addValidField("bbstType");
    }
 
}