using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using static System.Net.Mime.MediaTypeNames; namespace DS.Module.DjyServiceStatus { /// /// 服务项目返回 /// public class ServiceProjectRes { /// /// /// public string ProjectPKId { get; set; } /// /// /// public string ProjectCode { get; set; } /// /// 订舱 /// public string ProjectName { get; set; } /// /// /// public int SortNo { get; set; } /// /// /// public bool IsYield { get; set; } /// /// /// public DateTime ActDate { get; set; } /// /// /// public int StatusNum { get; set; } } public class ServiceProjectRoot { /// /// /// public bool Succ { get; set; } /// /// /// public int Status { get; set; } /// /// /// public List Ext { get; set; } /// /// /// public bool IsTimeout { get; set; } /// /// /// public DateTime ExecuteTime { get; set; } } }