package com.landy.gum.check.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class SP_boHuiListQueryCondition extends BaseQueryCondition {
|
|
private String orgId;
|
private String sccfRole;
|
private String scchState;
|
private String sccoFlowState1;
|
private String sccoFlowState2;
|
private String sccaName;
|
|
public String getOrgId() {
|
return orgId;
|
}
|
|
public void setOrgId(String orgId) {
|
this.orgId = orgId;
|
}
|
|
public String getSccfRole() {
|
return sccfRole;
|
}
|
|
public void setSccfRole(String sccfRole) {
|
this.sccfRole = sccfRole;
|
}
|
|
public String getScchState() {
|
return scchState;
|
}
|
|
public void setScchState(String scchState) {
|
this.scchState = scchState;
|
}
|
|
public String getSccoFlowState1() {
|
return sccoFlowState1;
|
}
|
|
public void setSccoFlowState1(String sccoFlowState1) {
|
this.sccoFlowState1 = sccoFlowState1;
|
}
|
|
public String getSccoFlowState2() {
|
return sccoFlowState2;
|
}
|
|
public void setSccoFlowState2(String sccoFlowState2) {
|
this.sccoFlowState2 = sccoFlowState2;
|
}
|
|
public String getSccaName() {
|
return sccaName;
|
}
|
|
public void setSccaName(String sccaName) {
|
this.sccaName = sccaName;
|
}
|
|
}
|