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; }