广州市综治平台后端
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
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;
 
import java.util.Date;
import java.util.List;
 
/**
 * @version 1.0.0
 * @title:网格平台组织机构映射表
 * @description:
 * @company:hugeinfo
 * @author: liyj
 * @time: 2024-10-17 16:41:34
 */
@TableName(value = "dyh_th_grid_unit")
@Data
public class GridUnit {
 
    /**
     * 组织编号
     */
    @TableId(value = "id")
    private Integer id;
 
    @TableField(value = "third_sys_id")
    private String thirdSysId;
 
    @TableField(value = "third_sys_name")
    private String thirdSysName;
 
    @TableField(value = "third_unit_id")
    private String thirdUnitId;
    @TableField(value = "third_grid_code")
    private String thirdGridCode;
    @TableField(value = "third_unit_code")
    private String thirdUnitCode;
    @TableField(value = "third_unit_name")
    private String thirdUnitName;
    @TableField(value = "third_parent_code")
    private String thirdParentCode;
    @TableField(value = "dyh_unit_id")
    private String dyhUnitId;
    @TableField(value = "create_time")
    private Date createTime;
    @TableField(value = "update_time")
    private Date updateTime;
 
 
}