using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_Core { public class Permissions { /// /// 菜单ID /// public int MenuId { get; set; } /// /// 父级菜单ID /// public int ParentId { get; set; } /// /// 表名 /// public string TableName { get; set; } /// /// 菜单权限 /// public string MenuAuth { get; set; } /// /// 用户权限 /// public string UserAuth { get; set; } /// /// 当前用户权限,存储的是权限的值,如:Add,Search等 /// public string[] UserAuthArr { get; set; } /// /// 2022.03.26 /// 菜单类型1:移动端,0:PC端 /// public int MenuType { get; set; } } }