WeatherDTO.java 634 B

12345678910111213141516171819202122232425
  1. package com.welampiot.dto;
  2. import lombok.Data;
  3. /**
  4. * ClassName: WeatherDTO
  5. * Package: com.welampiot.dto
  6. * Description:
  7. *
  8. * @Author: zhj_Start
  9. * @Create: 2023/8/31 - 18:34
  10. * @Version: v1.0
  11. */
  12. @Data
  13. public class WeatherDTO {
  14. private String temp; // 温度
  15. private String text; // 天气状况描述
  16. private String icon; // 天气状况图标代码
  17. private String aqi; // 空气质量指数
  18. private String level; // 空气质量水平
  19. private String category; // 空气质量等级
  20. private String tempMax; // 最高气温
  21. private String tempMin; // 最低气温
  22. private String updateTime;
  23. }