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.
19 lines
804 B
19 lines
804 B
namespace Tiobon.Core.IServices;
|
|
|
|
/// <summary>
|
|
/// 人力需求维护(自定义服务接口)
|
|
/// </summary>
|
|
public interface IGhrh_HumanRequestServices : IBaseServices<Ghrh_HumanRequest, Ghrh_HumanRequestDto, InsertGhrh_HumanRequestInput, EditGhrh_HumanRequestInput>
|
|
{
|
|
Task<ServiceResult> UpdateStatus(InsertGhrh_HumanRequestInput input, string status);
|
|
|
|
Task<ServiceResult<long>> InsertByStatus(InsertGhrh_HumanRequestInput insertModel, string status);
|
|
|
|
Task<ServicePageResult<Ghrh_HumanRequestDto>> QueryFilterSummaryPage(QueryBody filter);
|
|
|
|
Task<ServiceResult<ExcelData>> ExportSummaryExcel(QueryExport body);
|
|
|
|
Task<ServicePageResult<Ghrh_HumanRequestDto>> QueryFilterCompletePage(QueryBody filter);
|
|
|
|
Task<ServiceResult<ExcelData>> ExportCompleteExcel(QueryExport body);
|
|
} |