zhanghua
2024-01-09 4ef3b7b71b2b444f09e20bd440215e1677a602a4
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
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;
 
}