37 lines
858 B
C#
37 lines
858 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataServer.api
|
|
{
|
|
public class get_realtime_discharge
|
|
{
|
|
/// <summary>
|
|
/// 返回码
|
|
/// </summary>
|
|
public int code { get; set; }
|
|
|
|
/// <summary>
|
|
/// 返回说明
|
|
/// </summary>
|
|
public string msg { get; set; }
|
|
|
|
/// <summary>
|
|
/// 数据
|
|
/// </summary>
|
|
public List<realtime_dischargeData> data { get; set; }
|
|
}
|
|
public class realtime_dischargeData
|
|
{
|
|
public string DischargeTime { get; set; }
|
|
public List<realtime_discharge> data { get; set; }
|
|
}
|
|
public class realtime_discharge
|
|
{
|
|
public string DischargeName { get; set; }
|
|
public decimal? DischargeValue { get; set; }
|
|
}
|
|
}
|