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 RecruitmentController : AreaApiController
{
///
/// 构造函数
///
///
public RecruitmentController(IRecruitmentService service) : base(service)
{
_service = service;
}
///
/// 新增前处理数据
///
///
protected override void OnBeforeInsert(RecruitmentEntity info)
{
info.Id = 0;
info.CreatedTime = DateTime.Now;
info.CreatedUserId = CurrentUser.UserId;
info.IsDeleted = false;
}
///
/// 在更新数据前对数据的修改操作
///
///
///
protected override void OnBeforeUpdate(RecruitmentEntity info)
{
info.ModifiedUserId = CurrentUser.UserId;
info.ModifiedTime = DateTime.Now;
}
///
/// 在软删除数据前对数据的修改操作
///
///
///
protected override void OnBeforeSoftDelete(RecruitmentEntity info)
{
info.IsDeleted = true;
}
///
/// 异步分页查询
///
///
///
[HttpPost("FindWithPagerSearchAsync")]
[FunctionAuthorize("List")]
public async Task FindWithPagerSearchAsync(SearchRecruitmentModel search)
{
CommonResult> result = new CommonResult>
{
ResData = await _service.FindWithPagerSearchAsync(search),
ErrCode = ErrCode.successCode
};
return ToJsonContent(result);
}
///
/// 异步新增数据
///
///
///
[HttpPost("InsertAsync")]
[FunctionAuthorize("Add")]
public new async Task InsertAsync(RecruitmentInputDto input)
{
CommonResult result = new CommonResult();
RecruitmentEntity info = input.MapTo();
OnBeforeInsert(info);
result = await _service.InsertAsync(info);
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(RecruitmentInputDto input)
{
CommonResult result = new CommonResult();
RecruitmentEntity info = input.MapTo();
OnBeforeUpdate(info);
result = await _service.UpdateAsync(info);
if (result.Success)
{
result.ErrCode = ErrCode.successCode;
result.ErrMsg = ErrCode.err0;
}
else
{
result.ErrMsg = ErrCode.err43002;
result.ErrCode = "43002";
}
return ToJsonContent(result);
}
///
/// 根据主键Id获取一个对象信息
///
/// 主键Id
///
[HttpGet("GetById")]
// [FunctionAuthorize("")]
//[NoPermissionRequired]
[AllowAnonymous]
public async Task> GetById(long id)
{
CommonResult result = new CommonResult();
RecruitmentOutputDto 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);
}
}
}