2025-04-24 18:31:27 +08:00

73 lines
2.0 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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>
/// 消息模板类型 0灰色字提醒 10会员每次进店 20消费单消息 30服务单消息 40邀约/生日提醒 50进店提醒
/// 70业绩通知 80:首页消息类型 90:素材库消息类型
/// </summary>
public enum ChatMessagType
{
/// <summary>
/// 灰色字提醒
/// </summary>
[Description("灰色字提醒")]
ChatRemind = 0,
/// <summary>
/// 会话通知--会员进店
/// </summary>
[Description("会话通知--会员进店")]
ChatMemberJoin = 10,
/// <summary>
/// 消费单消息
/// </summary>
[Description("消费单消息")]
ChatSheet = 20,
/// <summary>
/// 服务单消息
/// </summary>
[Description("服务单消息")]
ChatService = 30,
/// <summary>
///生日提醒
/// </summary>
[Description("生日提醒")]
ChatBirth = 40,
/// <summary>
/// 进店提醒
/// </summary>
[Description("进店提醒")]
MessageJoin = 50,
/// <summary>
/// 充值
/// </summary>
[Description("充值")]
ChatRecharge = 60,
/// <summary>
/// 业绩通知
/// </summary>
[Description("业绩通知")]
MessageKPI = 70,
/// <summary>
/// 首页消息类型
/// </summary>
[Description("首页消息类型")]
HomePage = 80,
/// <summary>
/// 素材库消息类型
/// </summary>
[Description("素材库消息类型")]
MaterialsStore = 90,
/// <summary>
/// 邀约提醒
/// </summary>
[Description("邀约")]
ChatInvite = 100,
}
}