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