using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace IStation.Model { /// /// 角色权限类型 /// public enum eAuthType { /// /// 菜单 /// Menu = 0, /// /// /// 功能点 /// Func = 1 } }