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
| package com.thhy.secure.modules.biz.good.entity;
|
| import lombok.Data;
|
| import java.io.Serializable;
| import java.util.Date;
| import java.util.List;
|
| @Data
| public class GoodDto implements Serializable {
|
| private String id;
|
| private String goodName;
|
| private Date startTime;
|
| private Date endTime;
|
| /**
| * 规格
| */
|
|
| private String goodType;
|
| /**
| * 用途
| */
|
|
| private String useWay;
|
| /**
| * 位置
| */
|
|
| private String goodPosition;
|
| private String companyId;
|
| private List<SecureGoodFile> fileList;
| }
|
|