using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SegmentationWeight { public class DropDownSets { public static readonly string 车间 = "车间"; public static readonly string 单元 = "单元"; public static readonly string 批次 = "批次"; public DropDownSets() { Details=new List(); } public List Details { get; set; } } public class DropDownSet { public DropDownSet() { Details=new List(); } public string Name { get; set; } public List Details { get; set; } } public class DropDownSet_Detail { public long ID { get; set; } public string Name { get; set; } public string Code { get; set; } } }