using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using System; using System.Threading.Tasks; using Znyc.Recruitment.Admin.AspNetCore.Controllers; using Znyc.Recruitment.Admin.AspNetCore.Entitys; using Znyc.Recruitment.Admin.AspNetCore.Mvc; using Znyc.Recruitment.Admin.Commons.Entitys; using Znyc.Recruitment.Admin.Commons.Mapping; using Znyc.Recruitment.Admin.Commons.Pages; using Znyc.Recruitment.Admin.Security.Dtos; using Znyc.Recruitment.Admin.Security.Entitys; using Znyc.Recruitment.Admin.Security.IServices; namespace Znyc.Recruitment.Admin.WebApi.Controllers { /// /// 求职 /// [ApiController] [Route("api/Security/[controller]")] public class ApplyJobController : AreaApiController { /// /// 构造函数 /// /// public ApplyJobController(IApplyJobService _service) : base(_service) { _service = _service; } /// /// 新增前处理数据 /// /// protected override void OnBeforeInsert(ApplyJobEntity info) { info.Id = 0; info.CreatedTime = DateTime.Now; info.CreatedUserId = CurrentUser.UserId; info.IsDeleted = false; } /// /// 在更新数据前对数据的修改操作 /// /// /// protected override void OnBeforeUpdate(ApplyJobEntity info) { info.ModifiedUserId = CurrentUser.UserId; info.ModifiedTime = DateTime.Now; } /// /// 在软删除数据前对数据的修改操作 /// /// /// protected override void OnBeforeSoftDelete(ApplyJobEntity info) { info.IsDeleted = true; } /// /// 异步新增数据 /// /// /// [HttpPost("InsertAsync")] [FunctionAuthorize("Add")] public new async Task InsertAsync(ApplyJobInputDto input) { CommonResult result = new CommonResult(); ApplyJobEntity applyJob = input.MapTo(); OnBeforeInsert(applyJob); result = await _service.InsertAsync(applyJob); if (result.Success) { result.ErrCode = ErrCode.successCode; result.ErrMsg = ErrCode.err0; } else { result.ErrMsg = ErrCode.err43002; result.ErrCode = "43002"; } return ToJsonContent(result); } /// /// 异步更新数据 /// /// /// [HttpPost("UpdateAsync")] [FunctionAuthorize("Edit")] public async Task UpdateAsync(ApplyJobInputDto input) { CommonResult result = new CommonResult(); ApplyJobEntity applyJob = input.MapTo(); OnBeforeUpdate(applyJob); result = await _service.UpdateAsync(applyJob); if (result.Success) { result.ErrCode = ErrCode.successCode; result.ErrMsg = ErrCode.err0; } else { result.ErrMsg = ErrCode.err43002; result.ErrCode = "43002"; } return ToJsonContent(result); } /// /// 异步分页查询 /// /// /// [HttpPost("FindWithPagerSearchAsync")] [FunctionAuthorize("List")] [AllowAnonymous] public async Task FindWithPagerSearchAsync(SearchRecruitmentModel search) { CommonResult> result = new CommonResult> { ResData = await _service.FindWithPagerSearchAsync(search), ErrCode = ErrCode.successCode }; return ToJsonContent(result); } /// /// 根据主键Id获取一个对象信息 /// /// 主键Id /// [HttpGet("GetById")] [AllowAnonymous] public async Task> GetById(long id) { CommonResult result = new CommonResult(); ApplyJobOutputDto info = await _service.GetById(id); if (info != null) { result.ErrCode = ErrCode.successCode; result.ResData = info; } else { result.ErrMsg = ErrCode.err50001; result.ErrCode = "50001"; } return result; } /// /// 下架求职信息 /// /// /// [HttpPost("RevocationAsync")] [FunctionAuthorize("Edit")] public async Task RevocationAsync(long id) { CommonResult result = new CommonResult(); result = await _service.RevocationAsync(id, CurrentUser.UserId); if (result.Success) { result.ErrCode = ErrCode.successCode; result.ErrMsg = ErrCode.err0; } else { result.ErrMsg = ErrCode.err43002; result.ErrCode = "43002"; } return ToJsonContent(result); } } }