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

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> /// </summary>
/// <returns></returns> /// <returns></returns>
[HttpPost("QueryCompanyInfo/{companySpecCode}"), AllowAnonymous] [HttpPost("QueryCompanyInfo/{companySpecCode}/{langId}"), AllowAnonymous]
public async Task<ServiceResult<Dictionary<string, string>>> QueryCompanyInfo(string companySpecCode) public async Task<ServiceResult<Dictionary<string, string>>> QueryCompanyInfo(string companySpecCode, int langId)
{ {
return await _service.QueryCompanyInfo(companySpecCode); return await _service.QueryCompanyInfo(companySpecCode);
} }
#endregion #endregion
} }

@ -1211,7 +1211,7 @@
</summary> </summary>
<returns></returns> <returns></returns>
</member> </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>
查询简历是否存在 查询简历是否存在
</summary> </summary>

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

@ -1211,7 +1211,7 @@
</summary> </summary>
<returns></returns> <returns></returns>
</member> </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>
查询简历是否存在 查询简历是否存在
</summary> </summary>

Loading…
Cancel
Save