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
| package com.ld.igds.phone35.param;
|
| import lombok.Data;
|
| /**
| * 出入库数据封装
| * @author chen
| */
| @Data
| public class Phone35InoutCommonParam extends Phone35CommonParam {
|
| //登记使用
| private String userName;
| private String userId;
| private String userContact;
| private String plateNum;
| private String intelCard;
|
| //记录使用
| private String dateTime;
|
| private String progress;
|
| //值仓使用
| private String id; //流水id
| private Double deHandle;
| private String fileName1;
| private String fileName2;
|
| }
|
|