工作流

AuditFlowReq.cs 595B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using WorkFlowApi.Utility.WorkFlowEngine.Scheme.Node;
  7. namespace WorkFlowApi.ViewModels.Input
  8. {
  9. public class AuditFlowReq
  10. {
  11. public string OperationCode { get; set; }
  12. public string OperationName { get; set; }
  13. public string ProcessId { get; set; }
  14. public string TaskId { get; set; }
  15. public string BranchnodeCode { get; set; }
  16. public string Des { get; set; }
  17. public List<WFAuditor> auditors { get; set; }
  18. }
  19. }