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
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.GenerationType;
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 BbProcurePrice
 */
@Entity
@Table(name = "bb_procure_price")
@org.hibernate.annotations.Entity(dynamicInsert = true, dynamicUpdate = true)
public class BbProcurePriceModel extends BaseModel {
 
    //id-----bbsp_id
    private Integer bbppId;
    //供应商_id-----bbsp_bbbp_id
    private Integer bbppBbbpId;
    //材料_id-----bbsp_bbst_id
    private Integer bbppBbstId;
    //价格-----bbsp_price
    private Double bbppPrice;
    //创建时间-----create_time
    private Date createTime;
    //创建人-----creator
    private String creator;
    //修改人-----modifier
    private String modifier;
    //修改时间-----modify_time
    private Date modifyTime;
    //价格类型-----bbpp_falg
    private Integer bbppFlag;
    //备注-----bbsp_log
    private String bbppLog;
 
    /**
     * Get id-----bbsp_id
     */
    @Column(name = "bbpp_id")
    @Id @GeneratedValue(strategy=GenerationType.AUTO)
    public Integer getBbppId() {
        return bbppId;
    }
 
    /**
     * Set id-----bbsp_id
     */
    public void setBbppId(Integer bbppId) {
        this.bbppId = bbppId;
        addValidField("bbppId");
    }
 
    /**
     * Get 供应商_id-----bbsp_bbbp_id
     */
    @Column(name = "bbpp_bbbp_id")
    public Integer getBbppBbbpId() {
        return bbppBbbpId;
    }
 
    /**
     * Set 供应商_id-----bbsp_bbbp_id
     */
    public void setBbppBbbpId(Integer bbppBbbpId) {
        this.bbppBbbpId = bbppBbbpId;
        addValidField("bbppBbbpId");
    }
 
    /**
     * Get 材料_id-----bbsp_bbst_id
     */
    @Column(name = "bbpp_bbst_id")
    public Integer getBbppBbstId() {
        return bbppBbstId;
    }
 
    /**
     * Set 材料_id-----bbsp_bbst_id
     */
    public void setBbppBbstId(Integer bbppBbstId) {
        this.bbppBbstId = bbppBbstId;
        addValidField("bbppBbstId");
    }
 
    /**
     * Get 价格-----bbsp_price
     */
    @Column(name = "bbpp_price")
    public Double getBbppPrice() {
        return bbppPrice;
    }
 
    /**
     * Set 价格-----bbsp_price
     */
    public void setBbppPrice(Double bbppPrice) {
        this.bbppPrice = bbppPrice;
        addValidField("bbppPrice");
    }
 
    /**
     * Get 创建时间-----create_time
     */
    @Column(name = "create_time")
    public Date getCreateTime() {
        return createTime;
    }
 
    /**
     * Set 创建时间-----create_time
     */
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
        addValidField("createTime");
    }
 
    /**
     * Get 创建人-----creator
     */
    @Column(name = "creator")
    public String getCreator() {
        return creator;
    }
 
    /**
     * Set 创建人-----creator
     */
    public void setCreator(String creator) {
        this.creator = creator;
        addValidField("creator");
    }
 
    /**
     * Get 修改人-----modifier
     */
    @Column(name = "modifier")
    public String getModifier() {
        return modifier;
    }
 
    /**
     * Set 修改人-----modifier
     */
    public void setModifier(String modifier) {
        this.modifier = modifier;
        addValidField("modifier");
    }
 
    /**
     * Get 修改时间-----modify_time
     */
    @Column(name = "modify_time")
    public Date getModifyTime() {
        return modifyTime;
    }
 
    /**
     * Set 修改时间-----modify_time
     */
    public void setModifyTime(Date modifyTime) {
        this.modifyTime = modifyTime;
        addValidField("modifyTime");
    }
 
    /**
     * Get 价格类型-----bbpp_falg
     */
    @Column(name = "bbpp_flag")
    public Integer getBbppFlag() {
        return bbppFlag;
    }
 
    /**
     * Set 价格类型-----bbpp_falg
     */
    public void setBbppFlag(Integer bbppFlag) {
        this.bbppFlag = bbppFlag;
        addValidField("bbppFlag");
    }
 
    /**
     * Get 备注-----bbsp_log
     */
    @Column(name = "bbpp_log")
    public String getBbppLog() {
        return bbppLog;
    }
 
    /**
     * Set 备注-----bbsp_log
     */
    public void setBbppLog(String bbppLog) {
        this.bbppLog = bbppLog;
        addValidField("bbppLog");
    }
 
}