using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MyCode.Project.Domain.Businesses.Payments { public enum PayChannel { /// /// 微信支付 /// Wechat, /// /// 支付宝支付 /// Alipay, /// /// 条码支付 /// Barcode } }