1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.whyc.pojo;
|
| import lombok.Data;
|
| /**
| * 天气支持查询的城市
| */
| @Data
| public class WeatherCity {
| private Integer id;
| private String province;
| private String city;
| private String district;
| private String districtCode;
| }
|
|