24 lines
704 B
C#
24 lines
704 B
C#
using Volo.Abp.Application.Dtos;
|
|
using Yi.Framework.AiHub.Application.Contracts.Dtos.Recharge;
|
|
|
|
namespace Yi.Framework.AiHub.Application.Contracts.IServices;
|
|
|
|
public interface IRechargeService
|
|
{
|
|
/// <summary>
|
|
/// 查询已登录的账户充值记录(分页)
|
|
/// </summary>
|
|
Task<PagedResultDto<RechargeGetListOutput>> GetListByAccountAsync(RechargeGetListInput input);
|
|
|
|
/// <summary>
|
|
/// 移除用户vip及角色
|
|
/// </summary>
|
|
Task RemoveVipRoleByExpireAsync();
|
|
|
|
/// <summary>
|
|
/// 给用户充值VIP
|
|
/// </summary>
|
|
/// <param name="input">充值输入参数</param>
|
|
/// <returns></returns>
|
|
Task RechargeVipAsync(RechargeCreateInput input);
|
|
} |