26 lines
629 B
C#
26 lines
629 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataService.api
|
|
{
|
|
public class get_load_classification
|
|
{
|
|
public int code { get; set; }
|
|
public string msg { get; set; }
|
|
public List<load_classifcationData> data { get; set; }
|
|
}
|
|
public class load_classifcationData
|
|
{
|
|
public decimal? Amount { get; set; }
|
|
public List<load_classifcation> list { get; set; }
|
|
}
|
|
public class load_classifcation
|
|
{
|
|
public string type { get; set; }
|
|
public decimal? P { get; set; }
|
|
}
|
|
}
|