using Microsoft.AspNetCore.Mvc; using System; using System.Linq; using System.Threading.Tasks; using Yitter.IdGenerator; using Znyc.Recruitment.Admin.AspNetCore.Controllers; using Znyc.Recruitment.Admin.AspNetCore.Entitys; using Znyc.Recruitment.Admin.AspNetCore.Mvc; using Znyc.Recruitment.Admin.AspNetCore.ViewModel; using Znyc.Recruitment.Admin.Commons.Cache; using Znyc.Recruitment.Admin.Commons.Entitys; using Znyc.Recruitment.Admin.Commons.Extensions; using Znyc.Recruitment.Admin.Commons.Log; using Znyc.Recruitment.Admin.Commons.Mapping; 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 IndustryJobsController : AreaApiController { /// /// 构造函数 /// /// public IndustryJobsController(IIndustryJobsService service) : base(service) { _service = service; } /// /// 新增前处理数据 /// /// protected override void OnBeforeInsert(IndustryJobsEntity info) { info.Id = 0; info.IsEnabled = true; info.CreatedTime = DateTime.Now; info.CreatedUserId = CurrentUser.UserId; info.IsDeleted = false; } /// /// 在更新数据前对数据的修改操作 /// /// /// protected override void OnBeforeUpdate(IndustryJobsEntity info) { info.ModifiedUserId = CurrentUser.UserId; info.ModifiedTime = DateTime.Now; } /// /// 在软删除数据前对数据的修改操作 /// /// /// protected override void OnBeforeSoftDelete(IndustryJobsEntity info) { info.IsDeleted = true; } /// /// 异步新增数据 /// /// /// [HttpPost("Insert")] [FunctionAuthorize("Add")] public async Task InsertAsync(IndustryJobsInputDto tinfo) { CommonResult result = new CommonResult(); CacheHelper cacheHelper = new CacheHelper(); IndustryJobsEntity info = tinfo.MapTo(); OnBeforeInsert(info); info.Id = YitIdHelper.NextId(); int bl = await _service.InsertAsync(info).ConfigureAwait(false); if (bl > 0) { cacheHelper.Remove("industryjobs:list"); cacheHelper.Remove("allindustryjobs:list"); 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(IndustryJobsInputDto tinfo) { CommonResult result = new CommonResult(); CacheHelper cacheHelper = new CacheHelper(); IndustryJobsEntity info = _service.Get(tinfo.Id); info.ParentId = tinfo.ParentId; info.Name = tinfo.Name; info.Sort = tinfo.Sort; info.IsEnabled = tinfo.IsEnabled; OnBeforeUpdate(info); bool bl = await _service.UpdateAsync(info, tinfo.Id).ConfigureAwait(false); if (bl) { cacheHelper.Remove("industryjobs:list"); cacheHelper.Remove("allindustryjobs:list"); result.ErrCode = ErrCode.successCode; result.ErrMsg = ErrCode.err0; } else { result.ErrMsg = ErrCode.err43002; result.ErrCode = "43002"; } return ToJsonContent(result); } /// /// 获取行业岗位适用于Vue 树形列表 /// /// [HttpGet("GetAllIndustryJobsTreeTable")] [FunctionAuthorize("")] public async Task GetAllIndustryJobsTreeTable() { CommonResult result = new CommonResult(); try { System.Collections.Generic.List list = await _service.GetAllIndustryJobsTreeTable(); result.Success = true; result.ErrCode = ErrCode.successCode; result.ResData = list; } catch (Exception ex) { Log4NetHelper.Error("获取组织结构异常", ex); result.ErrMsg = ErrCode.err40110; result.ErrCode = "40110"; } return ToJsonContent(result); } /// /// 异步批量禁用数据 /// /// [HttpPost("SetEnabledMarktBatchAsync")] [FunctionAuthorize("")] public async Task SetEnabledMarktBatchAsync(UpdateEnableViewModel info) { CommonResult result = new CommonResult(); CacheHelper cacheHelper = new CacheHelper(); string where = string.Empty; if (typeof(int) == typeof(string)) { @where = "id in ('" + info.Ids.Join(",").Trim(',').Replace(",", "','") + "')"; } else if (typeof(int) == typeof(int)) { @where = "id in (" + info.Ids.Join(",") + ")"; } if (!string.IsNullOrEmpty(where)) { bool bl = false; if (info.Flag == "1") { bl = true; } bool blResult = await _service.SetEnabledMarkByWhereAsync(bl, where, CurrentUser.UserId); if (blResult) { cacheHelper.Remove("industryjobs:list"); cacheHelper.Remove("allindustryjobs:list"); result.ErrCode = ErrCode.successCode; result.ErrMsg = ErrCode.err0; } else { result.ErrMsg = ErrCode.err43002; result.ErrCode = "43002"; } } return ToJsonContent(result); } /// /// 异步软删除信息 /// /// 主键Id /// 删除标识,默认为1:即设为删除,0:未删除 [HttpDelete("DeleteSoftAsync")] [FunctionAuthorize("DeleteSoft")] public async Task DeleteSoftAsync(long id, string bltag = "1") { CommonResult result = new CommonResult(); System.Collections.Generic.IEnumerable IndustryJobList = await _service.GetListWhereAsync($" ParentId={id} and IsDeleted=0 and IsEnabled=1"); if (IndustryJobList != null && IndustryJobList.Count() > 0) { result.ErrMsg = "行业存在启用岗位,不能删除"; return ToJsonContent(result); } CacheHelper cacheHelper = new CacheHelper(); bool bl = false; if (bltag == "0") { bl = true; } bool blResult = await _service.DeleteSoftAsync(bl, id, CurrentUser.UserId); if (blResult) { cacheHelper.Remove("industryjobs:list"); cacheHelper.Remove("allindustryjobs:list"); result.ErrCode = ErrCode.successCode; result.ErrMsg = ErrCode.err0; } else { result.ErrMsg = ErrCode.err43002; result.ErrCode = "43002"; } return ToJsonContent(result); } /// /// 异步批量软删除信息 /// /// /// [HttpDelete("DeleteSoftBatchAsync")] [FunctionAuthorize("DeleteSoft")] public async Task DeleteSoftBatchAsync(UpdateEnableViewModel info) { CommonResult result = new CommonResult(); CacheHelper cacheHelper = new CacheHelper(); string where = string.Empty; string key = string.Empty; if (typeof(int) == typeof(string)) { @where = "id in ('" + info.Ids.Join(",").Trim(',').Replace(",", "','") + "')"; @key = " ParentId in ('" + info.Ids.Join(",").Trim(',').Replace(",", "','") + "') and IsDeleted=0 and IsEnabled=1"; } else if (typeof(int) == typeof(int)) { @where = "id in (" + info.Ids.Join(",") + ")"; @key = " ParentId in (" + info.Ids.Join(",") + ") and IsDeleted=0 and IsEnabled=1"; } if (!string.IsNullOrEmpty(key)) { System.Collections.Generic.IEnumerable IndustryJobList = await _service.GetListWhereAsync(key); if (IndustryJobList != null && IndustryJobList.Count() > 0) { result.ErrMsg = "行业存在启用岗位,不能删除"; return ToJsonContent(result); } } if (!string.IsNullOrEmpty(where)) { bool bl = false; if (info.Flag == "0") { bl = true; } bool blResult = await _service.DeleteSoftBatchAsync(bl, where, CurrentUser.UserId); if (blResult) { cacheHelper.Remove("industryjobs:list"); cacheHelper.Remove("allindustryjobs:list"); result.ErrCode = ErrCode.successCode; result.ErrMsg = ErrCode.err0; } else { result.ErrMsg = ErrCode.err43002; result.ErrCode = "43002"; } } return ToJsonContent(result); } } }