12345678910111213141516171819202122232425 |
-
- using NXWMS.DataAccess.Entity;
- using System;
- using System.Collections.Generic;
- using System.Runtime.Serialization;
- using System.Text;
- namespace NXWMS.Client.Model.AppModels.Result.SysSettings
- {
- /// <summary>
- /// 角色结果
- /// </summary>
- public class RoleResult : SYS_ROLE
- {
- public string GenderName { get; set; }
- public int RowNumber { get; set; }
- public string CreateName { get; set; }
- public string UpdateName { get; set; }
- public string UsedFlagName { get; set; }
- }
- }
|