using NXWMS.Model.CoreModels; using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Text; using System.Threading.Tasks; namespace NXWMS.Model.AppModels.Condition.SysSettings { /// /// 角色条件 /// public class RoleCondition : OperationInfo { /// /// 主键 /// public int? RoleId { get; set; } /// /// 多角色Ids /// public string RoleIds { get; set; } /// /// 是否正在使用 /// public bool IsUsed { get; set; } /// /// 角色 /// public string RoleCode { get; set; } /// /// 角色名称 /// public string RoleName { get; set; } /// /// 描述 /// public string Describe { get; set; } /// /// 授权菜单列表 /// public List PermissionMenuIdList { get; set; } = new List(); } }