12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- using System.Collections.Generic;
- namespace GxPress.Entity.WorkProcessDto
- {
-
-
-
- public class ProcessDto
- {
-
-
-
- public int Id { get; set; }
-
-
-
-
-
-
- public string Name { get; set; }
-
-
-
- public int GroupId { get; set; }
-
-
-
- public string IconUrl { get; set; }
-
-
-
- public string Description { get; set; }
-
-
-
-
-
-
-
- public string LimitType { get; set; }
-
-
-
- public int Sort { get; set; }
-
-
-
- public List<RequestLimit> RequestLimits { get; set; }
-
-
-
- public List<FormField> FormFields { get; set; }
-
-
-
- public List<ProcessNodeDto> ProcessNodes { get; set; }
-
-
-
- public bool AllowApproverCheck { get; set; }
-
-
-
- public bool AllowCarbonCopy { get; set; }
-
-
-
- public string TemplatePath { get; set; }
- }
- }
|