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
| package com.ruoyi.other.api.domain;
|
| 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;
|
| /**
| * @author zhibing.pu
| * @Date 2024/8/8 11:55
| */
| @Data
| @TableName("t_region")
| public class Region {
| /**
| * 主键
| */
| @TableId(value = "id", type = IdType.AUTO)
| private Integer id;
| /**
| * 城市名称
| */
| @TableField("name")
| private String name;
| /**
| * 行政区划代码
| */
| @TableField("code")
| private String code;
| /**
| * 城市code
| */
| @TableField("citycode")
| private String citycode;
| /**
| * 父级ID
| */
| @TableField("parent_id")
| private Integer parentId;
| /**
| * 英文名称
| */
| @TableField("english")
| private String english;
| }
|
|