package com.ycl.entity.equipment;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
import java.io.Serializable;
|
|
/**
|
* <p>
|
* 网格管理
|
* </p>
|
*
|
* @author lyq
|
* @since 2022-11-24
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
@TableName("ums_org_grid")
|
public class OrgGrid implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
/**
|
* 区域名称
|
*/
|
@TableField("name")
|
private String name;
|
/**
|
* 网格员姓名
|
*/
|
@TableField("worker")
|
private String worker;
|
|
/**
|
* 联系方式
|
*/
|
@TableField("contact")
|
private String contact;
|
|
/**
|
* 区域名称
|
*/
|
@TableField("area")
|
private String area;
|
|
/**
|
* 描述
|
*/
|
@TableField("description")
|
private String description;
|
/**
|
* 区域-坐标集合
|
*/
|
@TableField("region")
|
private String region;
|
|
/**
|
* 区域-中心点
|
*/
|
@TableField("center")
|
private String center;
|
/**
|
* 区域-比例尺
|
*/
|
@TableField("zoom")
|
private Double zoom;
|
|
}
|