All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.liuchink.chinkutils.baidu.bean.weather.WeatherRespNow Maven / Gradle / Ivy

There is a newer version: 0.0.14.RELEASE
Show newest version
package com.liuchink.chinkutils.baidu.bean.weather;

import java.io.Serializable;

import com.alibaba.fastjson.annotation.JSONField;

import lombok.Data;

/**
 * @author liugang
 * @since 2020/10/27 15:41
 */
@Data
public class WeatherRespNow  {
	private static final long serialVersionUID = -5375468785150558555L;
	private String temp;
	@JSONField(name = "feels_like")
	private String feelsLike;
	private String rh;
	@JSONField(name = "wind_class")
	private String windClass;
	@JSONField(name = "wind_dir")
	private String windDir;
	private String text;
	@JSONField(name = "prec_1h")
	private String prec1h;
	private String clouds;
	private String vis;
	private String aqi;
	private String pm25;
	private String pm10;
	private String no2;
	private String so2;
	private String o3;
	private String co;
	private String uptime;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy