using System; using System.Collections.Generic; using System.Threading.Tasks; using Volo.Abp.Application.Dtos; using Volo.Abp.Application.Services; using Business.ResourceExamineManagement.Dto; namespace Business.ResourceExamineManagement { /// /// 资源检查 /// public interface IResourceExamineAppService : IApplicationService { /// /// 资源检查 /// /// /// Task ReceiveResult(SeorderentryDto input); } }