1234567891011121314151617181920212223242526272829 |
- using DapperORMCore.Model.CoreModel;
- 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 RolePermissionCondition : OperationInfo
- {
- /// <summary>
- /// 角色Id
- /// </summary>
-
- public int? RoleId { get; set; }
- /// <summary>
- /// 角色编码
- /// </summary>
-
- public string RoleCode { get; set; }
- }
- }
|