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
package com.landy.gum.inout.query;
 
import com.landy.framework.core.query.BaseQueryCondition;
 
public class IoOpeningClosingQueryCondition extends BaseQueryCondition {
 
    private String factoryId;
    private Integer bbprBbbrId;
    private String bbprName;
    private String bbprStyle;
    private String bbprUnit;
    private String bbprGrammage;
    private String beginDate;
    private String endDate;
    private String yearMonthPrev;
 
    public String getFactoryId() {
        return factoryId;
    }
 
    public void setFactoryId(String factoryId) {
        this.factoryId = factoryId;
    }
 
    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 getBeginDate() {
        return beginDate;
    }
 
    public void setBeginDate(String beginDate) {
        this.beginDate = beginDate;
    }
 
    public String getEndDate() {
        return endDate;
    }
 
    public void setEndDate(String endDate) {
        this.endDate = endDate;
    }
 
    public String getYearMonthPrev() {
        return yearMonthPrev;
    }
 
    public void setYearMonthPrev(String yearMonthPrev) {
        this.yearMonthPrev = yearMonthPrev;
    }
 
}