using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MyCode.Project.Infrastructure.Enumeration { /// /// 消息模板类型 0:灰色字提醒 10:会员每次进店 20:消费单消息 30:服务单消息 40:邀约/生日提醒 50:进店提醒 /// 70:业绩通知 80:首页消息类型 90:素材库消息类型 /// public enum ChatMessagType { /// /// 灰色字提醒 /// [Description("灰色字提醒")] ChatRemind = 0, /// /// 会话通知--会员进店 /// [Description("会话通知--会员进店")] ChatMemberJoin = 10, /// /// 消费单消息 /// [Description("消费单消息")] ChatSheet = 20, /// /// 服务单消息 /// [Description("服务单消息")] ChatService = 30, /// ///生日提醒 /// [Description("生日提醒")] ChatBirth = 40, /// /// 进店提醒 /// [Description("进店提醒")] MessageJoin = 50, /// /// 充值 /// [Description("充值")] ChatRecharge = 60, /// /// 业绩通知 /// [Description("业绩通知")] MessageKPI = 70, /// /// 首页消息类型 /// [Description("首页消息类型")] HomePage = 80, /// /// 素材库消息类型 /// [Description("素材库消息类型")] MaterialsStore = 90, /// /// 邀约提醒 /// [Description("邀约")] ChatInvite = 100, } }