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
package com.landy.gum.base.query;
 
import com.landy.framework.core.query.BaseQueryCondition;
 
public class BbProductQueryCondition extends BaseQueryCondition {
 
    private Integer[] bbprBbbrId;
    private String bbprName;
    private String bbprStyle;
    private String bbprUnit;
    private String bbprGrammage;
    private String bbprBbbrIdList;
 
    public Integer[] getBbprBbbrId() {
        return bbprBbbrId;
    }
 
    public void setBbprBbbrId(Integer[] bbprBbbrId) {
        this.bbprBbbrId = bbprBbbrId;
    }
 
    public String getBbprName() {
        return bbprName;
    }
 
    public void setBbprName(String bbprName) {
        this.bbprName = bbprName;
    }
 
    public String getBbprStyle() {
        return bbprStyle;
    }
 
    public void setBbprStyle(String bbprStyle) {
        this.bbprStyle = bbprStyle;
    }
 
    public String getBbprUnit() {
        return bbprUnit;
    }
 
    public void setBbprUnit(String bbprUnit) {
        this.bbprUnit = bbprUnit;
    }
 
    public String getBbprGrammage() {
        return bbprGrammage;
    }
 
    public void setBbprGrammage(String bbprGrammage) {
        this.bbprGrammage = bbprGrammage;
    }
 
    public String getBbprBbbrIdList() {
        return bbprBbbrIdList;
    }
 
    public void setBbprBbbrIdList(String bbprBbbrIdList) {
        this.bbprBbbrIdList = bbprBbbrIdList;
    }
 
}