using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DataServer.api { public class get_one_proportion { /// /// 返回码 /// public int code { get; set; } /// /// 返回说明 /// public string msg { get; set; } /// /// 数据 /// public List data { get; set; } } public class one_proportionData { public decimal? Proportion { get; set; } public List data { get; set; } } public class one_proportion { /// /// 生料 /// public decimal? RawMaterial { get; set; } /// /// 破碎 /// public decimal? Broken { get; set; } /// /// 水泥磨 /// public decimal? Cement { get; set;} } }