You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
146 lines
4.9 KiB
146 lines
4.9 KiB
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using System;
|
|
using System.Threading.Tasks;
|
|
using Yitter.IdGenerator;
|
|
using Znyc.Cloudcar.Admin.AspNetCore.Controllers;
|
|
using Znyc.Cloudcar.Admin.AspNetCore.Entitys;
|
|
using Znyc.Cloudcar.Admin.AspNetCore.Mvc;
|
|
using Znyc.Cloudcar.Admin.Commons.Cache;
|
|
using Znyc.Cloudcar.Admin.Commons.Entitys;
|
|
using Znyc.Cloudcar.Admin.Commons.Enums;
|
|
using Znyc.Cloudcar.Admin.Commons.Mapping;
|
|
using Znyc.Cloudcar.Admin.Commons.Pages;
|
|
using Znyc.Cloudcar.Admin.Security.Dtos;
|
|
using Znyc.Cloudcar.Admin.Security.Entitys;
|
|
using Znyc.Cloudcar.Admin.Security.IServices;
|
|
|
|
namespace Znyc.Cloudcar.Admin.WebApi.Controllers
|
|
{
|
|
/// <summary>
|
|
/// 充值活动
|
|
/// </summary>
|
|
[ApiController]
|
|
[Route("api/Security/[controller]")]
|
|
public class
|
|
RechargeController : AreaApiController<RechargeEntity, RechargeOutputDto, RechargeAddInput, IRechargeService, long>
|
|
{
|
|
/// <summary>
|
|
/// 构造函数
|
|
/// </summary>
|
|
/// <param name="_service"></param>
|
|
public RechargeController(IRechargeService _service) : base(_service)
|
|
{
|
|
|
|
}
|
|
/// <summary>
|
|
/// 新增前处理数据
|
|
/// </summary>
|
|
/// <param name="info"></param>
|
|
protected override void OnBeforeInsert(RechargeEntity info)
|
|
{
|
|
info.Id = YitIdHelper.NextId();
|
|
info.CreatedTime = DateTime.Now;
|
|
info.CreatedUserId = CurrentUser.UserId;
|
|
info.IsDeleted = false;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 在更新数据前对数据的修改操作
|
|
/// </summary>
|
|
/// <param name="info"></param>
|
|
/// <returns></returns>
|
|
protected override void OnBeforeUpdate(RechargeEntity info)
|
|
{
|
|
info.ModifiedUserId = CurrentUser.UserId;
|
|
info.ModifiedTime = DateTime.Now;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 在软删除数据前对数据的修改操作
|
|
/// </summary>
|
|
/// <param name="info"></param>
|
|
/// <returns></returns>
|
|
protected override void OnBeforeSoftDelete(RechargeEntity info)
|
|
{
|
|
info.IsDeleted = true;
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// 分页查询
|
|
/// </summary>
|
|
/// <param name="search"></param>
|
|
/// <returns></returns>
|
|
[HttpPost("FindWithPagerSearchAsync")]
|
|
[FunctionAuthorize("List")]
|
|
[AllowAnonymous]
|
|
public async Task<IActionResult> FindWithPagerSearchAsync(SearchRechargeModel search)
|
|
{
|
|
CommonResult<PageResult<RechargeOutputDto>> result = new CommonResult<PageResult<RechargeOutputDto>>
|
|
{
|
|
ResData = await _service.FindWithPagerSearchAsync(search),
|
|
ErrCode = ErrCode.successCode
|
|
};
|
|
return ToJsonContent(result);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 异步新增数据
|
|
/// </summary>
|
|
/// <param name="input"></param>
|
|
/// <returns></returns>
|
|
[HttpPost("InsertAsync")]
|
|
[FunctionAuthorize("Add")]
|
|
|
|
public async Task<IActionResult> InsertAsync(RechargeAddInput input)
|
|
{
|
|
CommonResult result = new CommonResult();
|
|
RechargeEntity info = input.MapTo<RechargeEntity>();
|
|
CacheHelper cacheHelper = new CacheHelper();
|
|
OnBeforeInsert(info);
|
|
info.Name = input.Name;
|
|
info.State = (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);
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// 异步更新数据
|
|
/// </summary>
|
|
/// <param name="input"></param>
|
|
/// <returns></returns>
|
|
[HttpPost("UpdateAsync")]
|
|
[FunctionAuthorize("Edit")]
|
|
public async Task<IActionResult> 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);
|
|
}
|
|
}
|
|
}
|