package com.consum.base.pojo;
|
|
import com.walker.web.param.ParamRequest;
|
|
public class BaseWarehouseParam extends ParamRequest {
|
|
/**
|
* 仓库名称
|
*/
|
private String warehouseName;
|
/**
|
* 仓库类型Code
|
*/
|
private String classificationCode;
|
/**
|
* 机构id
|
*/
|
private Long agencyId;
|
/**
|
* 地址
|
*/
|
private String adress;
|
/**
|
* 状态
|
*/
|
private Integer states;
|
|
public String getWarehouseName() {
|
return warehouseName;
|
}
|
|
public void setWarehouseName(String warehouseName) {
|
this.warehouseName = warehouseName;
|
}
|
|
public String getClassificationCode() {
|
return classificationCode;
|
}
|
|
public void setClassificationCode(String classificationCode) {
|
this.classificationCode = classificationCode;
|
}
|
|
public Long getAgencyId() {
|
return agencyId;
|
}
|
|
public void setAgencyId(Long agencyId) {
|
this.agencyId = agencyId;
|
}
|
|
public String getAdress() {
|
return adress;
|
}
|
|
public void setAdress(String adress) {
|
this.adress = adress;
|
}
|
|
public Integer getStates() {
|
return states;
|
}
|
|
public void setStates(Integer states) {
|
this.states = states;
|
}
|
}
|