12345678910111213141516171819202122232425 |
- package com.welampiot.dto;
- import lombok.Data;
- /**
- * ClassName: WeatherDTO
- * Package: com.welampiot.dto
- * Description:
- *
- * @Author: zhj_Start
- * @Create: 2023/8/31 - 18:34
- * @Version: v1.0
- */
- @Data
- public class WeatherDTO {
- private String temp; // 温度
- private String text; // 天气状况描述
- private String icon; // 天气状况图标代码
- private String aqi; // 空气质量指数
- private String level; // 空气质量水平
- private String category; // 空气质量等级
- private String tempMax; // 最高气温
- private String tempMin; // 最低气温
- private String updateTime;
- }
|