123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- using System.Collections.Generic;
- namespace GxPress.Entity.WorkProcessDto
- {
-
-
-
- public class ProcessNodeDto
- {
-
-
-
- public int Id { get; set; }
-
-
-
- public string Name { get; set; }
-
-
-
-
- public string Type { get; set; }
-
-
-
- public int ParentId { get; set; }
-
-
-
- public IEnumerable<int> ReadOnlyFields { get; set; }
-
-
-
- public IEnumerable<int> HiddenFields { get; set; }
-
-
-
- public List<CarbonCopy> CarbonCopies { get; set; }
-
-
-
- public bool AllowMeeting { get; set; }
-
-
-
- public int DefaultApprovalUserId { get; set; }
-
-
-
- public string DefaultApprovalUserName { get; set; }
-
-
-
- public string ApprovalType { get; set; }
-
-
-
- public string CaseLevel { get; set; }
-
-
-
- public List<ApproverCheck> ApproverChecks { get; set; }
-
-
-
- public List<Condition> Conditions { get; set; }
-
-
-
- public List<ProcessNodeDto> Children { get; set; }
- }
- }
|