using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ApiTools.Core { /// /// 渠道钱包通道 /// public enum EnumWalletAccess { /// /// 支付宝 /// Alipay = 10, /// /// 平安银行 /// PingAnPay = 20, /// /// 微信 /// WeChatPay = 30, } }