namespace ZR.Model.MES.pro.DTO { public class GanttTaskDTO { public List Data { get; set; } public List Links { get; set; } } public class GanttTask_data { // id public string id { set; get; } /// /// 文字 /// public string text { set; get; } /// /// 开始时间 /// public string start_date { set; get; } /// /// 任务时长 /// public decimal? duration { set; get; } /// /// 完成进度 /// public decimal? progress { set; get; } /// /// 父任务id /// public int? parent { set; get; } /// /// 使用者 /// public string user { set; get; } /// /// 计划结束时间 /// public string planned_end { set; get; } /// /// 计划开始时间 /// public string planned_start { set; get; } public bool? show { set; get; } public bool? open { set; get; } public string type { set; get; } } public class GanttTask_link { public int? id { set; get; } public int? source { set; get; } public int? target { set; get; } public int? type { set; get; } } }