sunpengfei
2025-11-21 9f7df6c82745bf3f3722114610653c77fac68a43
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
using Furion.DatabaseAccessor;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace ApiTools.Core
{
    /// <summary>
    /// 渠道钱包
    /// </summary>
    public class ChannelWallet : CommonEntity<MasterDbContextLocator>
    {
        /// <summary>
        /// 渠道Id
        /// </summary>
        public Guid? ChannelId { get; set; }
 
        /// <summary>
        /// 渠道
        /// </summary>
        public Channel Channel { get; set; }
 
        /// <summary>
        /// 外部钱包Id
        /// </summary>
        public string OutWalletId { get; set; }
 
        /// <summary>
        /// 通道
        /// </summary>
        public EnumWalletAccess Access { get; set; }
 
        /// <summary>
        /// 编号
        /// </summary>
        public string Code { get; set; }
 
        /// <summary>
        /// 所属银行
        /// </summary>
        public string Bank { get; set; }
 
        /// <summary>
        /// 所属支行
        /// </summary>
        public string BankBranch { 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; }
 
        /// <summary>
        /// 错误代码
        /// </summary>
        public string ErrorCode { get; set; }
 
        /// <summary>
        /// 返回具体的原因。
        /// </summary>
        public string FailReason { get; set; }
 
    }
}