package com.ruoyi.alarmpoints.elecwall.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 Integer 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(Integer deptId)
|
{
|
this.deptId = deptId;
|
}
|
|
public Integer 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();
|
}
|
}
|