广州市综治平台后端
xusd
2025-06-07 36306491396230522fa20585c2621a7fc899849a
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
package cn.huge.module.ctuser.domain.po;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableLogic;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
 
/**
 * @title: 地域字典表数据库对应关系类
 * @description: PO中的属性与数据表是一一对应关系,如需根据业务处理不同,请使用BO对象。
 * @company:hugeinfo
 * @author: liyj
 * @time: 2024-10-18 15:14:06
 * @version 1.0.0
 */
@TableName(value = "dyh_sy_region_by")
@Data
public class ByRegion {
 
    /**
    * 主键
    */
    @TableId(value = "id")
    private Integer id;
 
    /**
    * 地域编码
    */
    @TableField(value = "third_code")
    private String thirdCode;
 
    /**
    * 地域名称
    */
    @TableField(value = "third_name")
    private String thirdName;
 
    /**
    * 所属父级代码编号,根级默认root
    */
    @TableField(value = "third_parent_id")
    private String thirdParentId;
 
    /**
    * 映射id
    */
    @TableField(value = "region_id")
    private String regionId;
 
    /**
    * 级别
    */
    @TableField(value = "level")
    private Integer level;
 
}