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