package com.landy.gum.out.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class PeiHuoEditQueryCondition extends BaseQueryCondition {
|
|
private Integer locationid;
|
private String detailpid;
|
|
public Integer getLocationid() {
|
return locationid;
|
}
|
|
public void setLocationid(Integer locationid) {
|
this.locationid = locationid;
|
}
|
|
public String getDetailpid() {
|
return detailpid;
|
}
|
|
public void setDetailpid(String detailpid) {
|
this.detailpid = detailpid;
|
}
|
|
}
|