using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Pcb.Common.Enum { public enum EnumRoleType { /// /// 普通人员 /// [Note("普通人员")] OrdinaryPersonnel=7, /// /// 财务人员 /// [Note("财务人员")] FinancialPersonnel=6, /// /// 管理员 /// [Note("管理员")] AdminManger = 1, /// /// 跟单员 /// [Note("跟单员")] FollowCustomerService = 2, /// /// 捷客人员 /// [Note("业务员")] BussinessPersonnel = 3, /// /// 大客户经理 /// [Note("大客户经理")] KeyAccountManager=4, /// /// 捷客人员 /// [Note("捷客人员")] JiekePersonnel = 5, } }