1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- 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; }
-
-
-
- public string status { set; get; }
-
-
-
- public string statusName { set; get; }
-
-
-
- public List<AuditNode> 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; }
- }
- }
|