43 lines
1.1 KiB
C#
43 lines
1.1 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>
|
|||
|
/// 推荐人类型 0待分配上级 1 店员 2 会员 3 加盟商 4 没有上级且不允许修改上级关系
|
|||
|
/// </summary>
|
|||
|
public enum ParentType
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 待分配上级
|
|||
|
/// </summary>
|
|||
|
[Description("待分配上级")]
|
|||
|
Wait = 0,
|
|||
|
/// <summary>
|
|||
|
/// 店员
|
|||
|
/// </summary>
|
|||
|
[Description("店员")]
|
|||
|
Clerk = 1,
|
|||
|
/// <summary>
|
|||
|
/// 会员
|
|||
|
/// </summary>
|
|||
|
[Description("会员")]
|
|||
|
Member = 2,
|
|||
|
/// <summary>
|
|||
|
/// 加盟商
|
|||
|
/// </summary>
|
|||
|
[Description("加盟商")]
|
|||
|
Customer = 3,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 没有上级且不允许修改上级关系
|
|||
|
/// </summary>
|
|||
|
[Description("没有上级且不允许修改上级关系")]
|
|||
|
Nothing = 4,
|
|||
|
}
|
|||
|
}
|