‘liusuyi’
2023-08-24 bc6ac2f55b2ddec81614ebf7722760b4868f76db
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
package com.ruoyi.dispatch.domain;
 
import java.util.List;
 
import com.ruoyi.common.core.domain.entity.SysUser;
import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
 
/**
 * 派警管理对象 ard_dispatch_police
 * 
 * @author ard
 * @date 2023-08-21
 */
public class ArdDispatchPolice extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** ID */
    private String id;
 
    /** 派警名称 */
    @Excel(name = "派警名称")
    private String name;
 
    /** 描述 */
    @Excel(name = "描述")
    private String text;
 
    /** 经度 */
    @Excel(name = "经度")
    private Double longitude;
 
    /** 纬度 */
    @Excel(name = "纬度")
    private Double latitude;
 
    /** 部门ID */
    @Excel(name = "部门ID")
    private Integer deptId;
 
    /** 用户ID */
    @Excel(name = "用户ID")
    private String userId;
 
    /** 派警关联用户信息 */
    private List<SysUser> sysUserList;
 
    public void setId(String id) 
    {
        this.id = id;
    }
 
    public String getId() 
    {
        return id;
    }
    public void setName(String name) 
    {
        this.name = name;
    }
 
    public String getName() 
    {
        return name;
    }
    public void setLongitude(Double longitude) 
    {
        this.longitude = longitude;
    }
 
    public Double getLongitude() 
    {
        return longitude;
    }
    public void setLatitude(Double latitude) 
    {
        this.latitude = latitude;
    }
 
    public Double getLatitude() 
    {
        return latitude;
    }
    public void setDeptId(Integer deptId) 
    {
        this.deptId = deptId;
    }
 
    public Integer getDeptId() 
    {
        return deptId;
    }
    public void setUserId(String userId) 
    {
        this.userId = userId;
    }
 
    public String getUserId() 
    {
        return userId;
    }
 
    public List<SysUser> getSysUserList() {
        return sysUserList;
    }
 
    public void setSysUserList(List<SysUser> sysUserList) {
        this.sysUserList = sysUserList;
    }
 
    public String getText() {
        return text;
    }
 
    public void setText(String text) {
        this.text = text;
    }
}