package com.landy.gum.inout.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class IoDeliverDetailForReturnQueryCondition extends BaseQueryCondition {
|
|
private Integer bbprId;
|
private Integer bbstId;
|
private Integer bbbpId;
|
public Integer getBbprId() {
|
return bbprId;
|
}
|
public void setBbprId(Integer bbprId) {
|
this.bbprId = bbprId;
|
}
|
public Integer getBbstId() {
|
return bbstId;
|
}
|
public void setBbstId(Integer bbstId) {
|
this.bbstId = bbstId;
|
}
|
public Integer getBbbpId() {
|
return bbbpId;
|
}
|
public void setBbbpId(Integer bbbpId) {
|
this.bbbpId = bbbpId;
|
}
|
|
|
|
}
|