package com.whyc.dto;
|
|
/**
|
*
|
* 托盘库位
|
* {
|
* "pallet_ID": 35,
|
* "palletCode": "10001",
|
* "status": 0,
|
* "out_ID": null,
|
* "material_ID": 73,
|
* "ha": "350AH",
|
* "v": "4v",
|
* "pos": "活化房左侧库位1",
|
* "supper": "圣阳",
|
* "activation": 0
|
* }
|
*/
|
public class WmsPallet {
|
private Integer pallet_ID;
|
private String palletCode;
|
private Integer status;
|
private Integer out_ID;
|
private Integer material_ID;
|
private String ha;
|
private String v;
|
private String pos;
|
private String supper;
|
private Integer activation;
|
|
public Integer getPallet_ID() {
|
return pallet_ID;
|
}
|
|
public void setPallet_ID(Integer pallet_ID) {
|
this.pallet_ID = pallet_ID;
|
}
|
|
public String getPalletCode() {
|
return palletCode;
|
}
|
|
public void setPalletCode(String palletCode) {
|
this.palletCode = palletCode;
|
}
|
|
public Integer getStatus() {
|
return status;
|
}
|
|
public void setStatus(Integer status) {
|
this.status = status;
|
}
|
|
public Integer getOut_ID() {
|
return out_ID;
|
}
|
|
public void setOut_ID(Integer out_ID) {
|
this.out_ID = out_ID;
|
}
|
|
public Integer getMaterial_ID() {
|
return material_ID;
|
}
|
|
public void setMaterial_ID(Integer material_ID) {
|
this.material_ID = material_ID;
|
}
|
|
public String getHa() {
|
return ha;
|
}
|
|
public void setHa(String ha) {
|
this.ha = ha;
|
}
|
|
public String getV() {
|
return v;
|
}
|
|
public void setV(String v) {
|
this.v = v;
|
}
|
|
public String getPos() {
|
return pos;
|
}
|
|
public void setPos(String pos) {
|
this.pos = pos;
|
}
|
|
public String getSupper() {
|
return supper;
|
}
|
|
public void setSupper(String supper) {
|
this.supper = supper;
|
}
|
|
public Integer getActivation() {
|
return activation;
|
}
|
|
public void setActivation(Integer activation) {
|
this.activation = activation;
|
}
|
}
|