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.
18 lines
706 B
18 lines
706 B
namespace Tiobon.Core.IServices;
|
|
|
|
/// <summary>
|
|
/// 培训需求(自定义服务接口)
|
|
/// </summary>
|
|
public interface IGhre_RequestServices : IBaseServices<Ghre_Request, Ghre_RequestDto, InsertGhre_RequestInput, EditGhre_RequestInput>
|
|
{
|
|
Task<ServiceResult> UpdateStatus(InsertGhre_RequestInput input, string status);
|
|
|
|
Task<ServiceResult<long>> InsertByStatus(InsertGhre_RequestInput insertModel, string status);
|
|
|
|
Task<ServicePageResult<Ghre_RequestDto>> QueryGroup(QueryBody filter, string type);
|
|
|
|
Task Ushio_Sync();
|
|
|
|
Task<ServiceResult<ExcelData>> ExportGroupExcel(QueryExport body, string type);
|
|
Task<ServiceResult<ExcelData>> ExportExcel(QueryExport body, string status);
|
|
} |