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
48
| package com.ruoyi.project.tool.cityCode.domain;
|
| import com.ruoyi.framework.aspectj.lang.annotation.Excel;
| import com.ruoyi.framework.web.domain.BaseEntity;
| import lombok.Data;
|
| import java.util.Date;
|
| /**
| * 天气接口 城市记录对象 tool_city_code
| *
| * @author wm
| * @date 2020-07-09
| */
| @Data
| public class CityCode extends BaseEntity
| {
| private static final long serialVersionUID = 1L;
|
| /** id */
| private Integer id;
|
| /** 父级id */
| @Excel(name = "父级id")
| private Integer pid;
|
| /** 城市编码 */
| @Excel(name = "城市编码")
| private Integer cityCode;
|
| /** 城市名称 */
| @Excel(name = "城市名称")
| private String cityName;
|
| /** 邮编 */
| @Excel(name = "邮编")
| private String postCode;
|
| /** 区号 */
| @Excel(name = "区号")
| private String areaCode;
|
| /** 建立时间 */
| @Excel(name = "建立时间", width = 30, dateFormat = "yyyy-MM-dd")
| private Date ctime;
|
|
| }
|
|