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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
| package com.ld.igds.three.data;
|
| import lombok.Data;
|
| /**
| * 仓库卡片信息数据封装
| *
| * @author chen
| */
| @Data
| public class Data1001 {
|
| /**
| * 唯一标识
| */
| private String uid;
| /**
| * 仓库编码
| */
| private String depotId;
| /**
| * 仓库名称
| */
| private String depotName;
| /**
| * 保管员姓名
| */
| private String storeKeeper;
| /**
| * 保管员电话
| */
| private String storeKeeperPhone ;
| /**
| * 保管员等级
| */
| private String storeKeeperLevel;
| /**
| * 保管员头像
| */
| private String storeKeeperImg;
| /**
| * 粮食品种(中文名)
| */
| private String foodVariety;
| /**
| * 粮食性质(中文名)
| */
| private String foodType;
| /**
| * 粮食年份
| */
| private String proYear;
| /**
| * 设计容量
| */
| private String amount;
| /**
| * 当前储量
| */
| private String realAmount;
| /**
| * 仓库类型(中文名)
| */
| private String type;
| /**
| * 仓库状态(中文名)
| */
| private String status;
|
| }
|
|