using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPA.KitChen.GroupMealOrder.Core.Enum { public enum PayModelEnum { /// /// 微信 /// WeiXin, /// /// 支付宝 /// AliPay, /// /// 钱包 /// Wallet, /// /// 银联 /// UnionPay, /// /// 其他 /// Other, } }