Commit eefa6ca6 authored by 黄奎's avatar 黄奎

页面修改

parent ec5fbe40
...@@ -65,5 +65,10 @@ namespace Edu.Model.Entity.Web ...@@ -65,5 +65,10 @@ namespace Edu.Model.Entity.Web
/// 处理状态(0-待处理,1-已联系,2-不合适) /// 处理状态(0-待处理,1-已联系,2-不合适)
/// </summary> /// </summary>
public int ApplyStatus { get; set; } public int ApplyStatus { get; set; }
/// <summary>
/// 回复内容
/// </summary>
public string ApplyContent { get; set; }
} }
} }
...@@ -31,6 +31,5 @@ namespace Edu.Model.ViewModel.Web ...@@ -31,6 +31,5 @@ namespace Edu.Model.ViewModel.Web
return salary; return salary;
} }
} }
} }
} }
...@@ -244,12 +244,14 @@ namespace Edu.Module.Web ...@@ -244,12 +244,14 @@ namespace Edu.Module.Web
/// </summary> /// </summary>
/// <param name="Id"></param> /// <param name="Id"></param>
/// <param name="ApplyStatus"></param> /// <param name="ApplyStatus"></param>
/// <param name="ApplyContent"></param>
/// <returns></returns> /// <returns></returns>
public bool UpdateWebJobApplyModule(int Id, int ApplyStatus) public bool UpdateWebJobApplyModule(int Id, int ApplyStatus,string ApplyContent)
{ {
Dictionary<string, object> fileds = new Dictionary<string, object>() Dictionary<string, object> fileds = new Dictionary<string, object>()
{ {
{nameof(RB_Web_JobApply_ViewModel.ApplyStatus),ApplyStatus }, {nameof(RB_Web_JobApply_ViewModel.ApplyStatus),ApplyStatus },
{nameof(RB_Web_JobApply_ViewModel.ApplyContent),ApplyContent },
}; };
var flag = web_JobApplyRepository.Update(fileds, new WhereHelper(nameof(RB_Web_JobApply_ViewModel.Id), Id)); var flag = web_JobApplyRepository.Update(fileds, new WhereHelper(nameof(RB_Web_JobApply_ViewModel.Id), Id));
return flag; return flag;
......
...@@ -922,7 +922,21 @@ namespace Edu.WebApi.Controllers.Web ...@@ -922,7 +922,21 @@ namespace Edu.WebApi.Controllers.Web
{ {
var Id = base.ParmJObj.GetInt("Id", 0); var Id = base.ParmJObj.GetInt("Id", 0);
var extModel = webRecruitmentModule.GetWebJobApplyModule(Id); var extModel = webRecruitmentModule.GetWebJobApplyModule(Id);
return ApiResult.Success(data: extModel); var obj = new object();
if (extModel != null && extModel.Id > 0)
{
RB_Web_Recruitment_ViewModel model = new RB_Web_Recruitment_ViewModel();
if (extModel.RecruitmentId > 0)
{
model = webRecruitmentModule.GetWebRecruitmentModule(extModel.RecruitmentId);
}
obj = new
{
RecruitmentInfo= model,
JobInfo = extModel,
};
}
return ApiResult.Success(data: obj);
} }
/// <summary> /// <summary>
...@@ -947,7 +961,8 @@ namespace Edu.WebApi.Controllers.Web ...@@ -947,7 +961,8 @@ namespace Edu.WebApi.Controllers.Web
{ {
var Id = base.ParmJObj.GetInt("Id", 0); var Id = base.ParmJObj.GetInt("Id", 0);
var ApplyStatus = base.ParmJObj.GetInt("ApplyStatus", 0); var ApplyStatus = base.ParmJObj.GetInt("ApplyStatus", 0);
var flag = webRecruitmentModule.UpdateWebJobApplyModule(Id, ApplyStatus); string ApplyContent = base.ParmJObj.GetStringValue("ApplyContent");
var flag = webRecruitmentModule.UpdateWebJobApplyModule(Id, ApplyStatus, ApplyContent);
return flag ? ApiResult.Success() : ApiResult.Failed(); return flag ? ApiResult.Success() : ApiResult.Failed();
} }
#endregion #endregion
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment