package com.landy.gum.base.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class HospitalListQueryCondition extends BaseQueryCondition {
|
|
private Integer scmhPidIsNull;
|
private Integer scmhPid;
|
private Integer scmhId;
|
private String scmhSn;
|
private String scmhName;
|
private String scmhState;
|
|
public String getScmhSn() {
|
return scmhSn;
|
}
|
|
public void setScmhSn(String scmhSn) {
|
this.scmhSn = scmhSn;
|
}
|
|
public String getScmhName() {
|
return scmhName;
|
}
|
|
public void setScmhName(String scmhName) {
|
this.scmhName = scmhName;
|
}
|
|
public Integer getScmhPidIsNull() {
|
return scmhPidIsNull;
|
}
|
|
public void setScmhPidIsNull(Integer scmhPidIsNull) {
|
this.scmhPidIsNull = scmhPidIsNull;
|
}
|
|
public Integer getScmhPid() {
|
return scmhPid;
|
}
|
|
public void setScmhPid(Integer scmhPid) {
|
this.scmhPid = scmhPid;
|
}
|
|
public Integer getScmhId() {
|
return scmhId;
|
}
|
|
public void setScmhId(Integer scmhId) {
|
this.scmhId = scmhId;
|
}
|
|
public String getScmhState() {
|
return scmhState;
|
}
|
|
public void setScmhState(String scmhState) {
|
this.scmhState = scmhState;
|
}
|
|
|
|
}
|