using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MyCode.Project.Infrastructure.Enumeration { /// /// 第三方支付平台公司 /// public enum PaySupply { /// /// 招商银行平台 /// [Description("招商银行平台")] MerchantsBankPay = 1, /// /// 富友支付平台 /// [Description("富友支付平台")] FuiouPay = 2, } }