using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace VueWebApi.Models { public class AppScheduleKanban { /// /// 单据编号 /// public string ordercode { get; set; } /// /// 单据数量 /// public string orderqty { get; set; } /// /// 单据编号 /// public string ordergoodqty { get; set; } /// /// 产品编码 /// public string partcode { get; set; } /// /// 产品名称 /// public string partname { get; set; } /// /// 产品规格 /// public string partspec { get; set; } public List children { get; set; }//子节点 } public class AppScheduleKanbanSub { public string code { get; set; } public string name { get; set; } public string spec { get; set; } public string planqty { get; set; } public string goodqty { get; set; } } }