using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FlexJobApi.Core { /// /// 支付通道 /// public enum EnumPayAccess { /// /// 平安银行 /// PingAnBank = 10, /// /// 支付宝 /// Alipay = 20 } }