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 TemplateType { /// /// 消费成功通知模板 /// [Description("消费成功通知模板")] Consumption = 11, /// /// 预约成功通知模板 /// [Description("预约成功通知模板")] Appointment = 12, /// /// 订单评价提醒模板 /// [Description("订单评价提醒模板")] OrderEvaluationReminder = 13, /// /// 会员等级变更通知模板 /// [Description("会员等级变更通知模板")] LevelChange = 14, /// /// 会员注册成功模板 /// [Description("会员注册成功模板")] MemberRegistration = 15, /// /// 服务完成模板 /// [Description("服务完成")] ServiceFinish = 16, /// /// 会员充值成功模板 /// [Description("会员充值成功模板")] MemberRecharge = 17, } }