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");
|
}
|
|
}
|