32 lines
707 B
C#
32 lines
707 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataServer.api
|
|
{
|
|
public class get_meteorological_station
|
|
{
|
|
/// <summary>
|
|
/// 返回码
|
|
/// </summary>
|
|
public int code { get; set; }
|
|
|
|
/// <summary>
|
|
/// 返回说明
|
|
/// </summary>
|
|
public string msg { get; set; }
|
|
|
|
/// <summary>
|
|
/// 数据
|
|
/// </summary>
|
|
public List<meteorological_stationData> data { get; set; }
|
|
}
|
|
public class meteorological_stationData
|
|
{
|
|
public string WeatherName { get; set; }
|
|
public decimal? WeatherValue { get; set;}
|
|
}
|
|
}
|