333
This commit is contained in:
36
MyCode.Project.Infrastructure/Enumeration/ActionType.cs
Normal file
36
MyCode.Project.Infrastructure/Enumeration/ActionType.cs
Normal file
@@ -0,0 +1,36 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user