ny
昨天 b6f169fe43a2b13f351aefc152374fc7f0bc8cb7
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
package jnpf.visualdata.entity;
 
import com.alibaba.fastjson.annotation.JSONField;
import com.baomidou.mybatisplus.annotation.FieldFill;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
/**
 * 大屏地图配置
 *
 * @author JNPF开发平台组
 * @version V3.1.0
 * @copyright 引迈信息技术有限公司
 * @date 2021年6月15日
 */
@Data
@TableName("blade_visual_map")
public class VisualMapEntity {
    /** 主键 */
    @TableId("id")
    private String id;
 
    /** 地图名称 */
    @TableField("name")
    private String name;
 
    /** 地图数据 */
    @TableField("data")
    private String data;
 
    /** 地图编码 */
    @TableField("code")
    private String code;
 
    /** 地图级别 0:国家 1:省份 2:城市 3:区县 */
    @TableField("map_level")
    @JSONField(name = "level")
    private Integer mapLevel;
 
    /** 上级ID */
    @TableField("parent_id")
    private String parentId;
 
    /** 上级编码 */
    @TableField("parent_code")
    private String parentCode;
 
    /** 祖编码 */
    @TableField("ancestors")
    private String ancestors;
 
    /**
     * 租户id
     */
    @TableField(value = "f_tenant_id" , fill = FieldFill.INSERT)
    private String tenantId;
 
}