34 lines
752 B
C#
34 lines
752 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataServer.api
|
|
{
|
|
public class get_flexible_adjustable_load
|
|
{
|
|
/// <summary>
|
|
/// 返回码
|
|
/// </summary>
|
|
public int code { get; set; }
|
|
|
|
/// <summary>
|
|
/// 返回说明
|
|
/// </summary>
|
|
public string msg { get; set; }
|
|
|
|
/// <summary>
|
|
/// 数据
|
|
/// </summary>
|
|
public List<flexible_adjustable_loadData> data { get; set; }
|
|
}
|
|
public class flexible_adjustable_loadData
|
|
{
|
|
public int QuantityFacility { get; set; }
|
|
public int Flexible { get; set; }
|
|
public int GrossValue { get; set; }
|
|
}
|
|
}
|
|
|