package com.whyc.dto;
|
|
import java.util.LinkedList;
|
import java.util.List;
|
|
/**
|
* 下发任务请求参数
|
*/
|
public class WmsPalletDto {
|
|
/**
|
* 任务类型 1 =一楼出库、2=测电压、3=活化、4=二楼出库
|
*/
|
private Integer des;
|
private LinkedList<String> pallets;
|
private List<String> activateParameter;
|
|
private String endlocation_code;
|
|
public Integer getDes() {
|
return des;
|
}
|
|
public void setDes(Integer des) {
|
this.des = des;
|
}
|
|
public LinkedList<String> getPallets() {
|
return pallets;
|
}
|
|
public void setPallets(LinkedList<String> pallets) {
|
this.pallets = pallets;
|
}
|
|
public List<String> getActivateParameter() {
|
return activateParameter;
|
}
|
|
public void setActivateParameter(List<String> activateParameter) {
|
this.activateParameter = activateParameter;
|
}
|
|
public String getEndlocation_code() {
|
return endlocation_code;
|
}
|
|
public void setEndlocation_code(String endlocation_code) {
|
this.endlocation_code = endlocation_code;
|
}
|
}
|