package com.yssh.entity;
|
|
import lombok.Data;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
|
/**
|
* @author wMeng
|
* @ClassName YsshWeather
|
* @Description 天气数据
|
* @date 2022/10/30 13:18
|
* @Version 1.0
|
*/
|
@Data
|
@ApiModel(value = "天气数据",description = "天气数据")
|
public class Weather {
|
@ApiModelProperty(value = "主键")
|
private int id;
|
@ApiModelProperty(value = "时间")
|
private String time;
|
@ApiModelProperty(value = "风速")
|
private String windSpeed;
|
@ApiModelProperty(value = "风向")
|
private String windDirection;
|
@ApiModelProperty(value = "天气状况")
|
private String weatherCondition;
|
@ApiModelProperty(value = "气温")
|
private String temperature;
|
}
|