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
package com.landy.gum.zonghe.query;
 
import java.util.Date;
 
import javax.persistence.Column;
import javax.persistence.Entity;
 
import com.landy.framework.core.query.BaseQueryItem;
 
@Entity
public class ZhProductDaiZhiQueryItem extends BaseQueryItem {
 
    private String bbprId;
    private String bbprName;
    private String bbprStyle;
    private String bbprUnit;
    private String bbprBrand;
    private Integer daiZhiSize;
    private Date lastExitDate;
 
    @Column(name = "bbpr_id")
    public String getBbprId() {
        return bbprId;
    }
 
    public void setBbprId(String bbprId) {
        this.bbprId = bbprId;
        addValidField("bbprId");
    }
 
    @Column(name = "bbpr_name")
    public String getBbprName() {
        return bbprName;
    }
 
    public void setBbprName(String bbprName) {
        this.bbprName = bbprName;
        addValidField("bbprName");
    }
 
    @Column(name = "bbpr_style")
    public String getBbprStyle() {
        return bbprStyle;
    }
 
    public void setBbprStyle(String bbprStyle) {
        this.bbprStyle = bbprStyle;
        addValidField("bbprStyle");
    }
 
    @Column(name = "bbpr_unit")
    public String getBbprUnit() {
        return bbprUnit;
    }
 
    public void setBbprUnit(String bbprUnit) {
        this.bbprUnit = bbprUnit;
        addValidField("bbprUnit");
    }
 
    @Column(name = "bbpr_brand")
    public String getBbprBrand() {
        return bbprBrand;
    }
 
    public void setBbprBrand(String bbprBrand) {
        this.bbprBrand = bbprBrand;
        addValidField("bbprBrand");
    }
 
    @Column(name = "last_exit_date")
    public Date getLastExitDate() {
        return lastExitDate;
    }
 
    public void setLastExitDate(Date lastExitDate) {
        this.lastExitDate = lastExitDate;
        addValidField("lastExitDate");
    }
    @Column(name = "dai_zhi_size")
    public Integer getDaiZhiSize() {
        return daiZhiSize;
    }
 
    public void setDaiZhiSize(Integer daiZhiSize) {
        this.daiZhiSize = daiZhiSize;
    }
    
    
}