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 BbSaleprice
 */
@Entity
@Table(name = "bb_saleprice")
@org.hibernate.annotations.Entity(dynamicInsert = true, dynamicUpdate = true)
public class BbSalepriceModel extends BaseModel  {
 
    //id-----bbsp_id
    private Integer bbspId;
    //供应商_id-----bbsp_bbbp_id
    private Integer bbspBbbpId;
    //产成品_id-----bbsp_bbpr_id
    private Integer bbspBbprId;
    //材料_id-----bbsp_bbst_id
    private Integer bbspBbstId;
    //价格-----bbsp_price
    private Double bbspPrice;
    //创建时间-----create_time
    private Date createTime;
    //创建人-----creator
    private String creator;
    //修改人-----modifier
    private String modifier;
    //修改时间-----modify_time
    private Date modifyTime;
    //备注-----bbsp_log
    private String bbspLog;
 
    /**
     * Get id-----bbsp_id
     */
    @Column(name = "bbsp_id")
    @Id @GeneratedValue(strategy=GenerationType.AUTO)
    public Integer getBbspId() {
        return bbspId;
    }
 
    /**
     * Set id-----bbsp_id
     */
    public void setBbspId(Integer bbspId) {
        this.bbspId = bbspId;
        addValidField("bbspId");
    }
 
    /**
     * Get 供应商_id-----bbsp_bbbp_id
     */
    @Column(name = "bbsp_bbbp_id")
    public Integer getBbspBbbpId() {
        return bbspBbbpId;
    }
 
    /**
     * Set 供应商_id-----bbsp_bbbp_id
     */
    public void setBbspBbbpId(Integer bbspBbbpId) {
        this.bbspBbbpId = bbspBbbpId;
        addValidField("bbspBbbpId");
    }
 
    /**
     * Get 产成品_id-----bbsp_bbpr_id
     */
    @Column(name = "bbsp_bbpr_id")
    public Integer getBbspBbprId() {
        return bbspBbprId;
    }
 
    /**
     * Set 产成品_id-----bbsp_bbpr_id
     */
    public void setBbspBbprId(Integer bbspBbprId) {
        this.bbspBbprId = bbspBbprId;
        addValidField("bbspBbprId");
    }
 
    /**
     * Get 材料_id-----bbsp_bbst_id
     */
    @Column(name = "bbsp_bbst_id")
    public Integer getBbspBbstId() {
        return bbspBbstId;
    }
 
    /**
     * Set 材料_id-----bbsp_bbst_id
     */
    public void setBbspBbstId(Integer bbspBbstId) {
        this.bbspBbstId = bbspBbstId;
        addValidField("bbspBbstId");
    }
 
    /**
     * Get 价格-----bbsp_price
     */
    @Column(name = "bbsp_price")
    public Double getBbspPrice() {
        return bbspPrice;
    }
 
    /**
     * Set 价格-----bbsp_price
     */
    public void setBbspPrice(Double bbspPrice) {
        this.bbspPrice = bbspPrice;
        addValidField("bbspPrice");
    }
 
    /**
     * 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 备注-----bbsp_log
     */
    @Column(name = "bbsp_log")
    public String getBbspLog() {
        return bbspLog;
    }
 
    /**
     * Set 备注-----bbsp_log
     */
    public void setBbspLog(String bbspLog) {
        this.bbspLog = bbspLog;
        addValidField("bbspLog");
    }
 
}