sunpengfei
2025-11-20 a47038826eb7d1c152a50e95b3c9be177a130e8d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
using MediatR;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace ApiTools.Core
{
    /// <summary>
    /// 查询渠道平安银行钱包
    /// </summary>
    [Resource([EnumResourceController.UserServerChannelWallet])]
    public class GetChannelPingAnPayWalletQuery : IRequest<GetChannelPingAnPayWalletQueryResult>
    {
        /// <summary>
        /// 外部钱包Id
        /// </summary>
        public string OutWalletId { get; set; }
    }
 
    /// <summary>
    /// 查询渠道平安银行钱包
    /// </summary>
    public class GetChannelPingAnPayWalletQueryResult
    {
        /// <summary>
        /// 钱包Id
        /// </summary>
        public Guid Id { get; set; }
 
        /// <summary>
        /// 户名
        /// </summary>
        public string Name { get; set; }
 
        /// <summary>
        /// 账号
        /// </summary>
        public string Identity { get; set; }
 
        /// <summary>
        /// 余额
        /// </summary>
        public decimal Balance { get; set; }
 
        /// <summary>
        /// 签约状态
        /// </summary>
        public EnumWalletSignStatus SignStatus { get; set; }
 
    }
}