namespace Tiobon.Core.IServices; /// /// 培训计划(自定义服务接口) /// public interface IGhre_PlanServices : IBaseServices { Task> InsertByStatus(InsertGhre_PlanInput insertModel, string status); Task UpdateStatus(InsertGhre_PlanInput input, string status); Task> QueryUshioPlan(QueryBody filter); Task> QueryCompletionRateBLT(QueryBody filter); Task> ExportUshioPlan(QueryExport body); }