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.
15 lines
603 B
15 lines
603 B
namespace Tiobon.Core.IServices;
|
|
|
|
/// <summary>
|
|
/// IReportServices
|
|
/// </summary>
|
|
public interface IReportServices : IBaseServices<Ghrh_Resume, Ghrh_ResumeDto, InsertGhrh_ResumeInput, EditGhrh_ResumeInput>
|
|
{
|
|
Task<ServicePageResult<Ghra_StaffDto>> QueryNewStaffAsync(QueryBody filter, string condition, bool? IsEnable = true);
|
|
|
|
Task<ServiceResult<dynamic>> QueryESSResumeScreenPassRate(int langId = 1);
|
|
|
|
Task<ServiceResult<dynamic>> QueryInterviewPassRate(int langId = 1, int? staffId = null);
|
|
|
|
Task<ServiceResult<dynamic>> QuerySendOfferRate(int langId = 1, int? staffId = null);
|
|
}
|
|
|