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 CustomPageType { /// /// 预约小程序使用权益 /// [Description("预约小程序使用协议")] PreOrderAppletsUseEquity = 101, /// /// 会员权益 /// [Description("会员权益")] MemberBenefits = 111, /// /// 智慧门店会员权益 /// [Description("智慧门店会员权益")] StoreMemberBenefits = 121, /// /// 自定义 /// [Description("自定义")] Others = 999999 } }