using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MES.Production.Entity { public class ResponseArea { public List areaList { get;set; } } /// /// 区域实体 /// public class Area { /// /// 主键 /// public int id { get;set; } /// /// 父级 /// public int pid { get;set; } /// /// 标题 /// public string title { get;set; } /// /// 级次 /// public int level { get;set; } } }