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;
|
}
|
}
|