using NXWMS.Client.Model.CoreModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
namespace NXWMS.Client.Model.AppModels.Condition.SysSettings
{
///
/// 角色条件
///
public class RoleCondition : OperationInfo
{
///
/// 主键
///
public int? RoleId { get; set; }
///
/// 主键s
///
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; }
}
}