修改查询招聘公司配置信息接口

master
xiaochanghai 8 months ago
parent ab4da7a3c0
commit f79b7fa3eb
  1. 5
      Tiobon.Core.Api/Controllers/Ghrh/Ghrh_ResumeController.cs
  2. 2
      Tiobon.Core.Api/Tiobon.Core.xml
  3. 11
      Tiobon.Core.Services/Ghrh/Ghrh_ResumeServices.cs
  4. 2
      Tiobon.Core/Tiobon.Core.xml

@ -147,11 +147,10 @@ public class Ghrh_ResumeController : BaseController<IGhrh_ResumeServices, Ghrh_R
/// 查询简历是否存在
/// </summary>
/// <returns></returns>
[HttpPost("QueryCompanyInfo/{companySpecCode}"), AllowAnonymous]
public async Task<ServiceResult<Dictionary<string, string>>> QueryCompanyInfo(string companySpecCode)
[HttpPost("QueryCompanyInfo/{companySpecCode}/{langId}"), AllowAnonymous]
public async Task<ServiceResult<Dictionary<string, string>>> QueryCompanyInfo(string companySpecCode, int langId)
{
return await _service.QueryCompanyInfo(companySpecCode);
}
#endregion
}

@ -1211,7 +1211,7 @@
</summary>
<returns></returns>
</member>
<member name="M:Tiobon.Core.Api.Controllers.Ghrh_ResumeController.QueryCompanyInfo(System.String)">
<member name="M:Tiobon.Core.Api.Controllers.Ghrh_ResumeController.QueryCompanyInfo(System.String,System.Int32)">
<summary>
查询简历是否存在
</summary>

@ -380,7 +380,16 @@ public class Ghrh_ResumeServices : BaseServices<Ghrh_Resume, Ghrh_ResumeDto, Ins
{ "IdCardNo", "身份证后六位" },
{ "AgainLoginText", "二次登录" },
{ "LoginBtnText", "登录" },
{ "LogoUrl", url }
{ "LogoUrl", url },
{ "StartInputText", "开始填写" },
{ "HoldText", "暂存" },
{ "NextText", "下一步" },
{ "PreviousText", "上一步" },
{ "QuestionText", "道题目" },
{ "PleaseEnterText", "请输入" },
{ "PleaseSelectText", "请选择" },
{ "ApplicantPromiseText", "应聘者承诺" },
{ "HasSubmitText", "已提交" }
};
return ServiceResult<Dictionary<string, string>>.OprateSuccess("查询成功", dict);

@ -1211,7 +1211,7 @@
</summary>
<returns></returns>
</member>
<member name="M:Tiobon.Core.Api.Controllers.Ghrh_ResumeController.QueryCompanyInfo(System.String)">
<member name="M:Tiobon.Core.Api.Controllers.Ghrh_ResumeController.QueryCompanyInfo(System.String,System.Int32)">
<summary>
查询简历是否存在
</summary>

Loading…
Cancel
Save