package com.landy.gum.sys.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class KVSystemSetQueryCondition extends BaseQueryCondition {
|
|
private Integer locationid;
|
private String sykvType;
|
private String sykvKey;
|
public Integer getLocationid() {
|
return locationid;
|
}
|
|
public void setLocationid(Integer locationid) {
|
this.locationid = locationid;
|
}
|
|
public String getSykvType() {
|
return sykvType;
|
}
|
|
public void setSykvType(String sykvType) {
|
this.sykvType = sykvType;
|
}
|
|
public String getSykvKey() {
|
return sykvKey;
|
}
|
|
public void setSykvKey(String sykvKey) {
|
this.sykvKey = sykvKey;
|
}
|
|
}
|