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
package com.landy.gum.check.query;
 
import java.util.Date;
 
import javax.persistence.Column;
import javax.persistence.Entity;
 
import com.landy.framework.core.query.BaseQueryItem;
 
@Entity
public class C_R_getSchoolDetailListQueryItem extends BaseQueryItem {
 
    private String sccoId;
    private String sccoScchId;
    private String sccaName;
    private String scchTitle;
    private Date sccoBeginDate;
    private Date sccoSubmitData;
    private Date submitOverDate;
    private String scchState;
    private String sccoFlowRole;
    private Integer sccoFlowState;
    private Integer problemSize;
    private Integer firstFlow;
 
    @Column(name = "scco_id")
    public String getSccoId() {
        return sccoId;
    }
 
    public void setSccoId(String sccoId) {
        this.sccoId = sccoId;
        addValidField("sccoId");
    }
 
    @Column(name = "scco_scch_id")
    public String getSccoScchId() {
        return sccoScchId;
    }
 
    public void setSccoScchId(String sccoScchId) {
        this.sccoScchId = sccoScchId;
        addValidField("sccoScchId");
    }
 
    @Column(name = "scca_name")
    public String getSccaName() {
        return sccaName;
    }
 
    public void setSccaName(String sccaName) {
        this.sccaName = sccaName;
        addValidField("sccaName");
    }
 
    @Column(name = "scch_title")
    public String getScchTitle() {
        return scchTitle;
    }
 
    public void setScchTitle(String scchTitle) {
        this.scchTitle = scchTitle;
        addValidField("scchTitle");
    }
 
    @Column(name = "scco_begin_date")
    public Date getSccoBeginDate() {
        return sccoBeginDate;
    }
    public void setSccoBeginDate(Date sccoBeginDate) {
        this.sccoBeginDate = sccoBeginDate;
    }
 
    public void setSccoSubmitData(Date sccoSubmitData) {
        this.sccoSubmitData = sccoSubmitData;
        addValidField("sccoSubmitData");
    }
    @Column(name = "scco_submit_data")
    public Date getSccoSubmitData() {
        return sccoSubmitData;
    }
 
 
 
 
 
    @Column(name = "submitOverDate")
    public Date getSubmitOverDate() {
        return submitOverDate;
    }
 
    public void setSubmitOverDate(Date submitOverDate) {
        this.submitOverDate = submitOverDate;
        addValidField("submitOverDate");
    }
 
    @Column(name = "scch_state")
    public String getScchState() {
        return scchState;
    }
 
    public void setScchState(String scchState) {
        this.scchState = scchState;
        addValidField("scchState");
    }
 
    @Column(name = "scco_flow_role")
    public String getSccoFlowRole() {
        return sccoFlowRole;
    }
 
    public void setSccoFlowRole(String sccoFlowRole) {
        this.sccoFlowRole = sccoFlowRole;
        addValidField("sccoFlowRole");
    }
 
    @Column(name = "scco_flow_state")
    public Integer getSccoFlowState() {
        return sccoFlowState;
    }
 
    public void setSccoFlowState(Integer sccoFlowState) {
        this.sccoFlowState = sccoFlowState;
        addValidField("sccoFlowState");
    }
 
    @Column(name = "problemSize")
    public Integer getProblemSize() {
        return problemSize;
    }
 
    public void setProblemSize(Integer problemSize) {
        this.problemSize = problemSize;
        addValidField("problemSize");
    }
 
    @Column(name = "firstFlow")
    public Integer getFirstFlow() {
        return firstFlow;
    }
 
    public void setFirstFlow(Integer firstFlow) {
        this.firstFlow = firstFlow;
        addValidField("firstFlow");
    }
 
}