using MediatR; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ApiTools.Core { /// /// 查询渠道平安银行钱包 /// [Resource([EnumResourceController.UserServerChannelWallet])] public class GetChannelPingAnPayWalletQuery : IRequest { /// /// 外部钱包Id /// public string OutWalletId { get; set; } } /// /// 查询渠道平安银行钱包 /// public class GetChannelPingAnPayWalletQueryResult { /// /// 钱包Id /// public Guid Id { get; set; } /// /// 户名 /// public string Name { get; set; } /// /// 账号 /// public string Identity { get; set; } /// /// 余额 /// public decimal Balance { get; set; } /// /// 签约状态 /// public EnumWalletSignStatus SignStatus { get; set; } } }