package com.landy.gum.caigou.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class EntryDetailAddQueryCondition extends BaseQueryCondition {
|
|
private String bbbpId;
|
private Integer locationid;
|
|
public String getBbbpId() {
|
return bbbpId;
|
}
|
|
public void setBbbpId(String bbbpId) {
|
this.bbbpId = bbbpId;
|
}
|
|
public Integer getLocationid() {
|
return locationid;
|
}
|
|
public void setLocationid(Integer locationid) {
|
this.locationid = locationid;
|
}
|
|
}
|