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.
35 lines
1.2 KiB
35 lines
1.2 KiB
using Tiobon.Core.Common;
|
|
using Tiobon.Core.IServices.BASE;
|
|
using Tiobon.Core.Model;
|
|
using Tiobon.Core.Model.Models;
|
|
using Tiobon.Core.Model.ViewModels.Extend;
|
|
|
|
namespace Tiobon.Core.IServices;
|
|
|
|
/// <summary>
|
|
/// 个人简历(自定义服务接口)
|
|
/// </summary>
|
|
public interface IGhrh_ResumeServices : IBaseServices<Ghrh_Resume, Ghrh_ResumeDto, InsertGhrh_ResumeInput, EditGhrh_ResumeInput>
|
|
{
|
|
ServiceResult<List<ResumeViewTab>> QueryViewTab();
|
|
|
|
Task<ServiceResult<List<ResumeCondition>>> QueryConditions();
|
|
|
|
Task<ServiceResult> SwitchIsRecommend(List<long> ids, bool isRecommend);
|
|
|
|
Task<bool> UpdateStatus(List<long> ids, string status);
|
|
|
|
Task<bool> MarkTags(List<long> ids, List<long> tags);
|
|
|
|
Task<ServiceResult<dynamic>> CheckIsExist(EditGhrh_ResumeInput input);
|
|
|
|
Task<ServiceResult<Dictionary<string, string>>> QueryCompanyInfo(string companySpecCode);
|
|
|
|
Task<ServiceResult<dynamic>> Query(long id, int langId);
|
|
|
|
Task<ServiceResult> Submit(long id, string status, ResumeFormColumnSubmit resume);
|
|
|
|
Task<ServiceResult<dynamic>> QueryResult(long id, int langId);
|
|
|
|
Task<ServiceResult<string>> Export(QueryBody filter, string condition, bool? IsEnable = true);
|
|
} |