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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
package com.landy.gum.base.model;
 
import java.util.Date;
 
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.Table;
 
import com.landy.framework.core.model.BaseModel;
import com.landy.framework.core.model.OperationLog;
 
/**
 * Model class for BbProductPartner
 */
@Entity
@Table(name = "bb_product_partner")
@org.hibernate.annotations.Entity(dynamicInsert = true, dynamicUpdate = true)
public class BbProductPartnerModel extends BaseModel implements OperationLog {
 
    //bbppId
    private String bbppId;
    //产品关联id
    private String bbppBbprId;
    //供应商关联id
    private String bbppBbbpId;
    //是否有效
    private String bbppState;
    //采购或销售
    private String bbppType;
    //价格
    private String bbppPrice;
    //备注
    private String bbppRemark;
    //医院
    private Integer bbppLocationid;
    //creator
    private String creator;
    //createTime
    private Date createTime;
    //modifier
    private String modifier;
    //modifyTime
    private Date modifyTime;
 
    /**
     * Get bbppId
     */
    @Column(name = "bbpp_id")
    @Id @GeneratedValue(generator = "UUIDGenerator")
    public String getBbppId() {
        return bbppId;
    }
 
    /**
     * Set bbppId
     */
    public void setBbppId(String bbppId) {
        this.bbppId = bbppId;
        addValidField("bbppId");
    }
 
    /**
     * Get 产品关联id
     */
    @Column(name = "bbpp_bbpr_id")
    public String getBbppBbprId() {
        return bbppBbprId;
    }
 
    /**
     * Set 产品关联id
     */
    public void setBbppBbprId(String bbppBbprId) {
        this.bbppBbprId = bbppBbprId;
        addValidField("bbppBbprId");
    }
 
    /**
     * Get 供应商关联id
     */
    @Column(name = "bbpp_bbbp_id")
    public String getBbppBbbpId() {
        return bbppBbbpId;
    }
 
    /**
     * Set 供应商关联id
     */
    public void setBbppBbbpId(String bbppBbbpId) {
        this.bbppBbbpId = bbppBbbpId;
        addValidField("bbppBbbpId");
    }
 
    /**
     * Get 是否有效
     */
    @Column(name = "bbpp_state")
    public String getBbppState() {
        return bbppState;
    }
 
    /**
     * Set 是否有效
     */
    public void setBbppState(String bbppState) {
        this.bbppState = bbppState;
        addValidField("bbppState");
    }
 
    /**
     * Get 采购或销售
     */
    @Column(name = "bbpp_type")
    public String getBbppType() {
        return bbppType;
    }
 
    /**
     * Set 采购或销售
     */
    public void setBbppType(String bbppType) {
        this.bbppType = bbppType;
        addValidField("bbppType");
    }
 
    /**
     * Get 价格
     */
    @Column(name = "bbpp_price")
    public String getBbppPrice() {
        return bbppPrice;
    }
 
    /**
     * Set 价格
     */
    public void setBbppPrice(String bbppPrice) {
        this.bbppPrice = bbppPrice;
        addValidField("bbppPrice");
    }
 
    /**
     * Get 备注
     */
    @Column(name = "bbpp_remark")
    public String getBbppRemark() {
        return bbppRemark;
    }
 
    /**
     * Set 备注
     */
    public void setBbppRemark(String bbppRemark) {
        this.bbppRemark = bbppRemark;
        addValidField("bbppRemark");
    }
 
    /**
     * Get 医院
     */
    @Column(name = "bbpp_locationid")
    public Integer getBbppLocationid() {
        return bbppLocationid;
    }
 
    /**
     * Set 医院
     */
    public void setBbppLocationid(Integer bbppLocationid) {
        this.bbppLocationid = bbppLocationid;
        addValidField("bbppLocationid");
    }
 
    /**
     * Get creator
     */
    @Column(name = "creator")
    public String getCreator() {
        return creator;
    }
 
    /**
     * Set creator
     */
    public void setCreator(String creator) {
        this.creator = creator;
        addValidField("creator");
    }
 
    /**
     * Get createTime
     */
    @Column(name = "create_time")
    public Date getCreateTime() {
        return createTime;
    }
 
    /**
     * Set createTime
     */
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
        addValidField("createTime");
    }
 
    /**
     * Get modifier
     */
    @Column(name = "modifier")
    public String getModifier() {
        return modifier;
    }
 
    /**
     * Set modifier
     */
    public void setModifier(String modifier) {
        this.modifier = modifier;
        addValidField("modifier");
    }
 
    /**
     * Get modifyTime
     */
    @Column(name = "modify_time")
    public Date getModifyTime() {
        return modifyTime;
    }
 
    /**
     * Set modifyTime
     */
    public void setModifyTime(Date modifyTime) {
        this.modifyTime = modifyTime;
        addValidField("modifyTime");
    }
 
}