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.Cache;
using Znyc.Recruitment.Admin.Commons.Entitys;
using Znyc.Recruitment.Admin.Commons.Enums;
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
RechargeController : AreaApiController
{
///
/// 构造函数
///
///
public RechargeController(IRechargeService _service) : base(_service)
{
}
///
/// 新增前处理数据
///
///
protected override void OnBeforeInsert(RechargeEntity info)
{
info.Id = YitIdHelper.NextId();
info.CreatedTime = DateTime.Now;
info.CreatedUserId = CurrentUser.UserId;
info.IsDeleted = false;
}
///
/// 在更新数据前对数据的修改操作
///
///
///
protected override void OnBeforeUpdate(RechargeEntity info)
{
info.ModifiedUserId = CurrentUser.UserId;
info.ModifiedTime = DateTime.Now;
}
///
/// 在软删除数据前对数据的修改操作
///
///
///
protected override void OnBeforeSoftDelete(RechargeEntity info)
{
info.IsDeleted = true;
}
///
/// 分页查询
///
///
///
[HttpPost("FindWithPagerSearchAsync")]
[FunctionAuthorize("List")]
public async Task FindWithPagerSearchAsync(SearchRechargeModel search)
{
CommonResult> result = new CommonResult>
{
ResData = await _service.FindWithPagerSearchAsync(search),
ErrCode = ErrCode.successCode
};
return ToJsonContent(result);
}
///
/// 异步新增数据
///
///
///
[HttpPost("InsertAsync")]
[FunctionAuthorize("Add")]
public async Task InsertAsync(RechargeAddInput input)
{
CommonResult result = new CommonResult();
RechargeEntity info = input.MapTo();
CacheHelper cacheHelper = new CacheHelper();
OnBeforeInsert(info);
info.Name = input.Name;
info.Status = (int)ActivityStatusEnum.Ongoing;
long ln = await _service.InsertAsync(info).ConfigureAwait(false);
bool isSuccess = await _service.InsertRechargeIntroAsync(input.rechargeIntros, info.Id, info.CreatedUserId);
if (ln > 0 && isSuccess)
{
cacheHelper.Remove("recharge:list");
result.ErrCode = ErrCode.successCode;
result.ErrMsg = ErrCode.err0;
}
else
{
result.ErrMsg = ErrCode.err43001;
result.ErrCode = "43001";
}
return ToJsonContent(result);
}
///
/// 异步更新数据
///
///
///
[HttpPost("UpdateAsync")]
[FunctionAuthorize("Edit")]
public async Task UpdateAsync(RechargeUpdateInput input)
{
CommonResult result = await _service.UpdateAsync(input, CurrentUser.UserId);
CacheHelper cacheHelper = new CacheHelper();
if (result.Success)
{
cacheHelper.Remove("recharge:list");
result.ErrCode = ErrCode.successCode;
result.ErrMsg = ErrCode.err0;
}
else
{
result.ErrMsg = ErrCode.err43001;
result.ErrCode = "43001";
}
return ToJsonContent(result);
}
}
}