using Volo.Abp.Application.Dtos; using Yi.Framework.AiHub.Application.Contracts.Dtos.Recharge; namespace Yi.Framework.AiHub.Application.Contracts.IServices; public interface IRechargeService { /// /// 查询已登录的账户充值记录(分页) /// Task> GetListByAccountAsync(RechargeGetListInput input); /// /// 移除用户vip及角色 /// Task RemoveVipRoleByExpireAsync(); /// /// 给用户充值VIP /// /// 充值输入参数 /// Task RechargeVipAsync(RechargeCreateInput input); }