package com.landy.gum.sys.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class RoleQueryCondition extends BaseQueryCondition {
|
private static final long serialVersionUID = 1L;
|
private Integer syroLocationid;
|
private Integer syroId;
|
private String syroName;
|
|
public Integer getSyroLocationid() {
|
return syroLocationid;
|
}
|
|
public void setSyroLocationid(Integer syroLocationid) {
|
this.syroLocationid = syroLocationid;
|
}
|
|
public Integer getSyroId() {
|
return syroId;
|
}
|
|
public void setSyroId(Integer syroId) {
|
this.syroId = syroId;
|
}
|
|
public String getSyroName() {
|
return syroName;
|
}
|
|
public void setSyroName(String syroName) {
|
this.syroName = syroName;
|
}
|
|
}
|