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.ld.igds.phone.param;
|
| import lombok.Data;
| import java.util.Date;
|
| /**
| * @author chen
| */
| @Data
| public class ParamOrder extends CommonParam {
|
| private String id;
|
| private String deptId;
|
| private String type;
|
| private String depotId;
|
| private Date start;
|
| private Date end;
|
| private String status;
| }
|
|