whycxzp
2025-03-21 303468c3060dd53003ea9e06c6f27478f8e151ba
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
package com.whyc.dto;
 
import java.util.List;
 
/**
 * 下发任务请求参数
 */
public class WmsPalletDto {
    private Integer des;
    private List<String> pallets;
    private List<String> activateParameter;
 
    public Integer getDes() {
        return des;
    }
 
    public void setDes(Integer des) {
        this.des = des;
    }
 
    public List<String> getPallets() {
        return pallets;
    }
 
    public void setPallets(List<String> pallets) {
        this.pallets = pallets;
    }
 
    public List<String> getActivateParameter() {
        return activateParameter;
    }
 
    public void setActivateParameter(List<String> activateParameter) {
        this.activateParameter = activateParameter;
    }
}