whycxzp
2025-04-23 abccd023bae40d5d8ad2fcdbf848b4240928414d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
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;
    }
}