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
| package com.zy.asrs.entity.param;
|
| import com.zy.asrs.entity.ManLocDetl;
| import com.zy.asrs.entity.OrderDetl;
| import lombok.Data;
|
| import java.util.List;
| @Data
| public class OrderCheckParam {
|
|
| private Long orderId;
|
| private Long docType;
|
| private String checkType;
|
| private String orderNo;
|
| private List<ManLocDetl> orderDetlList;
|
|
|
|
| }
|
|