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