sunpengfei
2025-11-19 7b47c91bcf89d667a5c99cfafe0d899280f7fbe3
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
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 SaveChannelPingAnPayWalletCommand : IRequest<SaveChannelPingAnPayWalletCommandResult>
    {
        /// <summary>
        /// 外部钱包Id
        /// </summary>
        public string OutWalletId { get; set; }
 
        /// <summary>
        /// 户名
        /// </summary>
        public string Name { get; set; }
 
        /// <summary>
        /// 账号
        /// </summary>
        public string Identity { get; set; }
 
    }
 
    public class SaveChannelPingAnPayWalletCommandResult
    {
        /// <summary>
        /// 钱包Id
        /// </summary>
        public Guid Id { get; set; }
 
        /// <summary>
        /// 余额
        /// </summary>
        public decimal Balance { get; set; }
    }
}