package com.whyc.dto;
|
|
/**
|
* 库位数据
|
* 参数说明 字段名称 参数类型 字段描述
|
* location_ID Int 库位ID
|
* locationCode String 库位编码
|
* locationType Int 库位类型 1=一楼入库缓存位、2=一楼出库缓存位、3=活化仓、4=二楼走廊工位、5=存放库区
|
* a1 Int 排
|
* a2 Int 列
|
* status Int 状态 0=无货、1=有货、4=锁定中
|
*/
|
public class WmsLocationDto {
|
/** 库位ID */
|
private Integer locationId;
|
/** 库位编码 */
|
private String locationCode;
|
/** 库位类型 1=一楼入库缓存位、2=一楼出库缓存位、3=活化仓、4=二楼走廊工位、5=存放库区 */
|
private Integer locationType;
|
/** 排 */
|
private Integer a1;
|
/** 列 */
|
private Integer a2;
|
/** 状态 0=无货、1=有货、4=锁定中 */
|
private Integer status;
|
|
public Integer getLocationId() {
|
return locationId;
|
}
|
|
public void setLocationId(Integer locationId) {
|
this.locationId = locationId;
|
}
|
|
public String getLocationCode() {
|
return locationCode;
|
}
|
|
public void setLocationCode(String locationCode) {
|
this.locationCode = locationCode;
|
}
|
|
public Integer getLocationType() {
|
return locationType;
|
}
|
|
public void setLocationType(Integer locationType) {
|
this.locationType = locationType;
|
}
|
|
public Integer getA1() {
|
return a1;
|
}
|
|
public void setA1(Integer a1) {
|
this.a1 = a1;
|
}
|
|
public Integer getA2() {
|
return a2;
|
}
|
|
public void setA2(Integer a2) {
|
this.a2 = a2;
|
}
|
|
public Integer getStatus() {
|
return status;
|
}
|
|
public void setStatus(Integer status) {
|
this.status = status;
|
}
|
}
|