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.Commons.Entitys; 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 FeedbackController : AreaApiController { /// /// 构造函数 /// /// public FeedbackController(IFeedbackService _service) : base(_service) { } /// /// 新增前处理数据 /// /// protected override void OnBeforeInsert(FeedbackEntity info) { info.Id = YitIdHelper.NextId(); info.CreatedTime = DateTime.Now; info.CreatedUserId = CurrentUser.UserId; info.IsDeleted = false; } /// /// 在更新数据前对数据的修改操作 /// /// /// protected override void OnBeforeUpdate(FeedbackEntity info) { info.ModifiedUserId = CurrentUser.UserId; info.ModifiedTime = DateTime.Now; } /// /// 在软删除数据前对数据的修改操作 /// /// /// protected override void OnBeforeSoftDelete(FeedbackEntity info) { info.IsDeleted = true; } /// /// 分页查询 /// /// status:0未处理/1已处理/-1全部 /// [HttpPost("FindWithPagerSearchAsync")] [FunctionAuthorize("List")] public async Task FindWithPagerSearchAsync(SearchFeedbackModel search) { CommonResult> result = new CommonResult> { ResData = await _service.FindWithPagerSearchAsync(search), ErrCode = ErrCode.successCode }; return ToJsonContent(result); } /// /// 异步更新数据 /// /// /// 0未处理/1已处理 /// [HttpPost("UpdateAsync")] [FunctionAuthorize("Edit")] public async Task UpdateAsync(long id, int status) { CommonResult result = new CommonResult(); FeedbackEntity info = new FeedbackEntity() { Id = id, Status = status }; OnBeforeUpdate(info); result = await _service.UpdateAsync(info); if (result.Success) { result.ErrCode = ErrCode.successCode; result.ErrMsg = ErrCode.err0; } else { result.ErrMsg = ErrCode.err43001; result.ErrCode = "43001"; } return ToJsonContent(result); } } }