59 lines
1.4 KiB
C#
59 lines
1.4 KiB
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace MyCode.Project.Infrastructure.Enumeration
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 微信通知模板类型
|
|||
|
/// </summary>
|
|||
|
public enum TemplateType
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 消费成功通知模板
|
|||
|
/// </summary>
|
|||
|
[Description("消费成功通知模板")]
|
|||
|
Consumption = 11,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 预约成功通知模板
|
|||
|
/// </summary>
|
|||
|
[Description("预约成功通知模板")]
|
|||
|
Appointment = 12,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 订单评价提醒模板
|
|||
|
/// </summary>
|
|||
|
[Description("订单评价提醒模板")]
|
|||
|
OrderEvaluationReminder = 13,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 会员等级变更通知模板
|
|||
|
/// </summary>
|
|||
|
[Description("会员等级变更通知模板")]
|
|||
|
LevelChange = 14,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 会员注册成功模板
|
|||
|
/// </summary>
|
|||
|
[Description("会员注册成功模板")]
|
|||
|
MemberRegistration = 15,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 服务完成模板
|
|||
|
/// </summary>
|
|||
|
[Description("服务完成")]
|
|||
|
ServiceFinish = 16,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 会员充值成功模板
|
|||
|
/// </summary>
|
|||
|
[Description("会员充值成功模板")]
|
|||
|
MemberRecharge = 17,
|
|||
|
|
|||
|
}
|
|||
|
}
|