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; }