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
| package com.dsh.course.feignClient.account.model;
|
| 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 2023/8/1 17:00
| */
| @Data
| public class CityManager {
| /**
| * 主键
| */
| private Integer id;
| /**
| * 姓名
| */
| private String name;
| /**
| * 电话
| */
| private String phone;
| /**
| * 省
| */
| private String province;
| /**
| * 省编号
| */
| private String provinceCode;
| /**
| * 市
| */
| private String city;
| /**
| * 市编号
| */
| private String cityCode;
| /**
| * 状态(1=正常,2=冻结,3=删除)
| */
| private Integer state;
| }
|
|