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