UserResult.cs 577 B

12345678910111213141516171819202122232425
  1. using NXWMS.DataAccess.Entity;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Runtime.Serialization;
  6. using System.Text;
  7. namespace NXWMS.Client.Model.AppModels.Result.SysSettings
  8. {
  9. /// <summary>
  10. /// 用户登录结果信息
  11. /// </summary>
  12. public class UserResult : SYS_USER
  13. {
  14. public string GenderName { get; set; }
  15. public int RowNumber { get; set; }
  16. public string CreateName { get; set; }
  17. public string UpdateName { get; set; }
  18. public string UsedFlagName { get; set; }
  19. }
  20. }