1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package org.sxkj.resource.vo;
|
| import lombok.Data;
|
| import java.io.Serializable;
|
| @Data
| public class AttachStatisticsBo implements Serializable {
| /**
| * 数量
| */
| private Integer num;
| /**
| * 状态
| */
| private Integer status;
| /**
| * 字典key
| */
| private String dictKey;
|
| private String time;
| }
|
|