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