package com.landy.gum.caigou.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class WillCheckEntryCountQueryCondition extends BaseQueryCondition {
|
|
private Integer locationid;
|
private String[] cgprIds;
|
|
public Integer getLocationid() {
|
return locationid;
|
}
|
|
public void setLocationid(Integer locationid) {
|
this.locationid = locationid;
|
}
|
|
public String[] getCgprIds() {
|
return cgprIds;
|
}
|
|
public void setCgprIds(String[] cgprIds) {
|
this.cgprIds = cgprIds;
|
}
|
|
}
|