package com.landy.gum.caigou.query;
|
|
import com.landy.framework.core.query.BaseQueryCondition;
|
|
public class ProductItemByCodeQueryCondition extends BaseQueryCondition {
|
|
private String batchNumber;
|
private Integer locationid;
|
private String xuHao;
|
|
public String getBatchNumber() {
|
return batchNumber;
|
}
|
|
public void setBatchNumber(String batchNumber) {
|
this.batchNumber = batchNumber;
|
}
|
|
public Integer getLocationid() {
|
return locationid;
|
}
|
|
public void setLocationid(Integer locationid) {
|
this.locationid = locationid;
|
}
|
|
public String getXuHao() {
|
return xuHao;
|
}
|
|
public void setXuHao(String xuHao) {
|
this.xuHao = xuHao;
|
}
|
|
}
|