37 lines
819 B
C#
37 lines
819 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataServer.api
|
|
{
|
|
public class get_load_proportion
|
|
{
|
|
/// <summary>
|
|
/// 返回码
|
|
/// </summary>
|
|
public int code { get; set; }
|
|
|
|
/// <summary>
|
|
/// 返回说明
|
|
/// </summary>
|
|
public string msg { get; set; }
|
|
|
|
/// <summary>
|
|
/// 数据
|
|
/// </summary>
|
|
public List<load_proportionData> data { get; set; }
|
|
}
|
|
public class load_proportionData
|
|
{
|
|
public decimal? Amount { get; set; }
|
|
public List<load_proportion> data { get; set; }
|
|
}
|
|
public class load_proportion
|
|
{
|
|
public string Name { get; set; }
|
|
public decimal? Value { get; set; }
|
|
}
|
|
}
|