aijinhui
2023-08-31 6e54b432ab969eccb47b0aa388b95bf14e398790
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
package com.ruoyi.alarmpoints.wall.domain;
 
import com.ruoyi.common.core.domain.entity.SysUser;
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;
 
import java.util.List;
 
/**
 * 电子围栏管理对象 ard_wall
 * 
 * @author ard
 * @date 2023-07-20
 */
public class ArdWall extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** ID */
    private String id;
 
    /** 名称 */
    @Excel(name = "名称")
    private String wallName;
 
    /** 范围 */
    @Excel(name = "范围")
    private String wallPoi;
 
    /** 类型 */
    @Excel(name = "类型")
    private String type;
 
    /** 颜色 */
    @Excel(name = "颜色")
    private String color;
 
    /** 所属部门 */
    @Excel(name = "所属部门")
    private Long deptId;
 
    /** 所属用户 */
    @Excel(name = "所属用户")
    private String userId;
    /** 关联用户列表 */
    @Excel(name = "关联用户列表")
    List<SysUser> sysUserList;
 
    public List<SysUser> getSysUserList() {
        return sysUserList;
    }
 
    public void setSysUserList(List<SysUser> sysUserList) {
        this.sysUserList = sysUserList;
    }
 
    public void setId(String id)
    {
        this.id = id;
    }
 
    public String getId() 
    {
        return id;
    }
    public void setWallName(String wallName) 
    {
        this.wallName = wallName;
    }
 
    public String getWallName() 
    {
        return wallName;
    }
    public void setWallPoi(String wallPoi) 
    {
        this.wallPoi = wallPoi;
    }
 
    public String getWallPoi() 
    {
        return wallPoi;
    }
    public void setType(String type) 
    {
        this.type = type;
    }
 
    public String getType() 
    {
        return type;
    }
    public void setColor(String color) 
    {
        this.color = color;
    }
 
    public String getColor() 
    {
        return color;
    }
    public void setDeptId(Long deptId)
    {
        this.deptId = deptId;
    }
 
    public Long getDeptId()
    {
        return deptId;
    }
    public void setUserId(String userId) 
    {
        this.userId = userId;
    }
 
    public String getUserId() 
    {
        return userId;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("wallName", getWallName())
            .append("wallPoi", getWallPoi())
            .append("type", getType())
            .append("color", getColor())
            .append("deptId", getDeptId())
            .append("userId", getUserId())
            .append("createBy", getCreateBy())
            .append("createTime", getCreateTime())
            .append("updateBy", getUpdateBy())
            .append("updateTime", getUpdateTime())
            .toString();
    }
}