using Microsoft.AspNetCore.Mvc; using System; 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.Dtos; using Znyc.Recruitment.Admin.Commons.Entitys; using Znyc.Recruitment.Admin.Commons.Extensions; 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 RoleController : AreaApiController { private readonly IOrganizeService organizeService; /// /// 构造函数 /// /// /// public RoleController(IRoleService service, IOrganizeService _organizeService) : base(service) { _service = service; organizeService = _organizeService; } /// /// 新增前处理数据 /// /// protected override void OnBeforeInsert(RoleEntityEntity info) { info.Id = 0; info.CreatedTime = DateTime.Now; info.CreatedUserId = CurrentUser.UserId; info.IsDeleted = false; if (info.SortCode == null) { info.SortCode = 99; } } /// /// 在更新数据前对数据的修改操作 /// /// /// protected override void OnBeforeUpdate(RoleEntityEntity info) { info.ModifiedUserId = CurrentUser.UserId; info.ModifiedTime = DateTime.Now; } /// /// 在软删除数据前对数据的修改操作 /// /// /// protected override void OnBeforeSoftDelete(RoleEntityEntity info) { info.IsDeleted = true; } /// /// 异步新增数据 /// /// /// [HttpPost("Insert")] [FunctionAuthorize("Add")] public async Task InsertAsync(RoleInputDto tinfo) { CommonResult result = new CommonResult(); RoleEntityEntity info = tinfo.MapTo(); OnBeforeInsert(info); info.Id = YitIdHelper.NextId(); long bl = await _service.InsertReturnPrimaryKeyAsync(info).ConfigureAwait(false); if (bl > 0) { result.ErrCode = ErrCode.successCode; result.ErrMsg = ErrCode.err0; } else { result.ErrMsg = ErrCode.err43002; result.ErrCode = "43002"; } return ToJsonContent(result); } /// /// 异步更新数据 /// /// /// [HttpPost("Update")] [FunctionAuthorize("Edit")] public async Task UpdateAsync(RoleInputDto tinfo) { CommonResult result = new CommonResult(); RoleEntityEntity info = _service.Get(tinfo.Id); info.OrganizeId = tinfo.OrganizeId; info.FullName = tinfo.FullName; info.EnCode = tinfo.EnCode; info.SortCode = tinfo.SortCode; info.Description = tinfo.Description; info.Type = tinfo.Type; OnBeforeUpdate(info); bool bl = await _service.UpdateAsync(info, tinfo.Id).ConfigureAwait(false); if (bl) { result.ErrCode = ErrCode.successCode; result.ErrMsg = ErrCode.err0; } else { result.ErrMsg = ErrCode.err43002; result.ErrCode = "43002"; } return ToJsonContent(result); } /// /// 根据条件查询数据库,并返回对象集合(用于分页数据显示) /// /// /// [HttpPost("FindWithPagerAsync")] [FunctionAuthorize("List")] public virtual async Task>> FindWithPagerAsync( SearchInputDto search) { CommonResult> result = new CommonResult> { ResData = await _service.FindWithPagerAsync(search), ErrCode = ErrCode.successCode }; return result; } /// /// 异步批量禁用数据 /// /// [HttpPost("SetEnabledMarktBatchAsync")] [FunctionAuthorize("")] public async Task SetEnabledMarktBatchAsync(UpdateEnableViewModel info) { CommonResult result = new CommonResult(); 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) { result.ErrCode = ErrCode.successCode; result.ErrMsg = ErrCode.err0; } else { result.ErrMsg = ErrCode.err43002; result.ErrCode = "43002"; } } return ToJsonContent(result); } } }