#
luxiaotao1123
2021-03-13 6ede6b27b7c8d4ea5cbf4ec93b17b5f2358debf1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package zy.cloud.wms.manager.entity.param;
 
import lombok.Data;
 
import java.util.List;
 
/**
 * Created by vincent on 2021/3/10
 */
@Data
public class InitOrderParam {
 
    private String number;
 
    private String customerTypeId;
 
    private List<PakinMatDto> list;
 
}