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
| package org.sxkj.odm.vo;
|
| import lombok.Data;
| import java.io.Serializable;
|
| /**
| * @author zhongrj
| * @date 2025-06-17
| */
| @Data
| public class OdmTaskStatisticsBO implements Serializable {
| /**
| * 数量
| */
| private Integer num;
| /**
| * 状态
| */
| private Integer status;
| /**
| * 字典key
| */
| private String dictKey;
|
| /**
| * 时间
| */
| private String time;
| // 面积
| private String area;
| }
|
|