namespace Tiobon.Core.IServices; /// /// IReportServices /// public interface IReportServices : IBaseServices { Task> QueryNewStaffAsync(QueryBody filter, string condition, bool? IsEnable = true); Task> QueryESSResumeScreenPassRate(int langId = 1); Task> QueryInterviewPassRate(int langId = 1, int? staffId = null); Task> QuerySendOfferRate(int langId = 1, int? staffId = null); }