101captain
2022-04-19 00a59b93c16b24e7be77c6f1ce4866c75a2e0431
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
package com.panzhihua.service_community.model.dos;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
 
import lombok.Data;
 
@Data
@TableName(value = "com_mng_struct_area_city")
public class ComMngCityDO {
    /** 自增 id */
    @TableId(type = IdType.AUTO)
    private Integer id;
 
    /** 城市名称 */
    private String cityName;
 
    /** 城市行政区划代码 */
    private Integer cityAdcode;
 
    /** 省份行政区划代码 */
    private Integer provinceAdcode;
 
    /** 省份 id */
    private Integer provinceId;
}