37 lines
937 B
C#
37 lines
937 B
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>
|
|||
|
/// 行为记录类型 1:会员回店提醒 2:会员体验 3:会员回店服务 4:会员产生销售
|
|||
|
/// </summary>
|
|||
|
public enum ActionType
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 会员回店提醒
|
|||
|
/// </summary>
|
|||
|
[Description("会员回店提醒")]
|
|||
|
Remind = 1,
|
|||
|
/// <summary>
|
|||
|
/// 会员体验
|
|||
|
/// </summary>
|
|||
|
[Description("会员体验")]
|
|||
|
Practice = 2,
|
|||
|
/// <summary>
|
|||
|
/// 会员回店服务
|
|||
|
/// </summary>
|
|||
|
[Description("会员回店服务")]
|
|||
|
Service = 3,
|
|||
|
/// <summary>
|
|||
|
/// 会员产生销售
|
|||
|
/// </summary>
|
|||
|
[Description("会员产生销售")]
|
|||
|
Sale = 4
|
|||
|
}
|
|||
|
}
|