using Abp.Application.Services.Dto; using VberZero.AppService.Base.Dto; using VberZero.AppService.Workflows.Dto; namespace VberZero.AppService.Workflows; public interface IWorkflowAuditAppServiceBase { /// /// 获取我的审批流程 /// /// /// Task> GetAllAsync(VzPagedRequestDto input); /// /// 获取详情 /// /// 流程ID /// Task GetAuditRecordsAsync(EntityDto input); /// /// 审核 /// /// /// Task AuditAsync(WorkflowAuditInput input); }