工作流

AuditFlowReq.cs 552B

1234567891011121314151617181920212223
  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 BranchnodeCode { get; set; }
  15. public string Des { get; set; }
  16. public List<WFAuditor> auditors { get; set; }
  17. }
  18. }