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 RoleSearchCondition : PageQueryConditionInfo
{
///
/// 主键
///
public int? Id { get; set; }
///
/// 角色
///
public string RoleCode { get; set; }
///
/// 角色名称
///
public string RoleName { get; set; }
///
/// 正在使用
///
public bool? IsUsed { get; set; }
}
}