123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- using OASystem.Domain.Dtos.System;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.ViewModels.System
- {
-
-
-
- public class ApprovalProcessView : AuditTemplateView
- {
- public int Id { get; set; }
- }
-
-
-
- public class AuditTemplateView
- {
-
-
-
- public string TemplateName { get; set; }
-
-
-
- public string TemplateCode { get; set; }
-
-
-
- public int BusinessType { get; set; }
-
-
-
- public int Status { get; set; }
-
-
-
- public List<AuditTemplateNodeView> TempNodes { get; set; }
- }
-
-
-
- public class AuditTemplateNodeView
- {
- public int Id { get; set; }
-
-
-
- public int TemplateId { get; set; }
-
-
-
- public string? NodeName { get; set; }
-
-
-
- public int NodeOrder { get; set; } = 0;
-
-
-
- public int ApproveType { get; set; } = 0;
-
-
-
- public bool IsRequired { get; set; }
-
-
-
- public List<AuditTemplateNodeUserView> NodeUsers { get; set; }
- }
-
-
-
- public class AuditTemplateNodeUserView
- {
- public int Id { get; set; }
-
-
-
- public int NodeId { get; set; }
-
-
-
- public int UserId { get; set; }
-
-
-
- public string UserName { get; set; }
- }
- }
|