You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Tiobon.Web.Core/Tiobon.Core.IServices/Ghre/IGhre_PlanServices.cs

19 lines
674 B

using Tiobon.Core.Common;
namespace Tiobon.Core.IServices;
/// <summary>
/// 培训计划(自定义服务接口)
/// </summary>
public interface IGhre_PlanServices : IBaseServices<Ghre_Plan, Ghre_PlanDto, InsertGhre_PlanInput, EditGhre_PlanInput>
{
Task<ServiceResult<long>> InsertByStatus(InsertGhre_PlanInput insertModel, string status);
Task<ServiceResult> UpdateStatus(InsertGhre_PlanInput input, string status);
Task<ServicePageResult<UshioPlanReport>> QueryUshioPlan(QueryBody filter);
Task<ServicePageResult<CompletionRateBLT>> QueryCompletionRateBLT(QueryBody filter);
Task<ServiceResult<ExcelData>> ExportUshioPlan(QueryExport body);
}