linwei
2024-01-31 b3b566ebdfed4005aaa513da3d5d2fd3924903cc
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
71
72
package org.springblade.modules.patrol.vo;
 
import lombok.Data;
import org.springblade.modules.patrol.entity.PatrolRecord;
 
@Data
public class PatrolRecordVO extends PatrolRecord {
 
    /**
     * 任务巡查路线
     */
    private String taskRoute;
 
    /**
     * 组名称
     */
    private String groupName;
 
    /**
     * 组id
     */
    private String groupId;
 
    /**
     * 项名称
     */
    private String itemsName;
 
    /**
     * 项描述
     */
    private String description;
 
    /**
     * 巡查时间
     */
    private String patrolTime;
 
    /**
     * 巡查人id
     */
    private String toUserId;
    /**
     * 巡查人名
     */
    private String toUserName;
    /**
     * 联系方式
     */
    private String phone;
    /**
     * 任务名称
     */
    private String taskName;
 
    /**
     * 水库编码
     */
    private String resGuid;
    /**
     * 水库名称
     */
    private String resName;
    /**
     * 水库注册登记码
     */
    private String resRegCode;
    /**
     * 水库所在位置
     */
    private String resLoc;
}