package com.landy.gum.caigou.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class ProcureDetailEditQueryCondition extends BaseQueryCondition {
|
|
private Integer locationid;
|
private Integer cgpdCgprId;
|
|
public Integer getLocationid() {
|
return locationid;
|
}
|
|
public void setLocationid(Integer locationid) {
|
this.locationid = locationid;
|
}
|
|
public Integer getCgpdCgprId() {
|
return cgpdCgprId;
|
}
|
|
public void setCgpdCgprId(Integer cgpdCgprId) {
|
this.cgpdCgprId = cgpdCgprId;
|
}
|
|
}
|