using QM.KJGH.Model.Enums; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WS.Orm; namespace QM.KJGH.CGGL.Model.QxCghj { public class CghjTjpgrwView { /// /// 任务编码 /// public string id { set; get; } /// /// 行政区编码 /// public string divisionCode { set; get; } /// /// 行政区名称 /// public string divisionName { set; get; } /// /// 上报年份 /// public string reportYear { set; get; } /// /// 上报日期 /// public string reportDate { set; get; } /// /// 上报结束日期 /// public string reportEndDate { set; get; } /// /// 状态编码(1:未上报; 2:待审查; 3:审查通过; 4:退回) /// public string status { set; get; } /// /// 状态名称(1:未上报; 2:待审查; 3:审查通过; 4:退回) /// public string statusName { set; get; } /// /// 审查节点 /// public List auditNodes { set; get; } } public class AuditNode { public string nodeName { set; get; } public string reviewOpinion { set; get; } public string status { set; get; } public string statusName { set; get; } public DateTime auditTime { set; get; } } }