| | |
| | | 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*/ |
| | | /** 自增 id */ |
| | | @TableId(type = IdType.AUTO) |
| | | private Integer id; |
| | | |
| | | /**城市名称*/ |
| | | /** 城市名称 */ |
| | | private String cityName; |
| | | |
| | | /**城市行政区划代码*/ |
| | | /** 城市行政区划代码 */ |
| | | private Integer cityAdcode; |
| | | |
| | | /**省份行政区划代码*/ |
| | | /** 省份行政区划代码 */ |
| | | private Integer provinceAdcode; |
| | | |
| | | /**省份 id*/ |
| | | /** 省份 id */ |
| | | private Integer provinceId; |
| | | } |