View_SysUserLastLoginTime.cs 387 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using Newtonsoft.Json;
  4. namespace YZXYH.Repository.Models
  5. {
  6. [Serializable]
  7. public partial class View_SysUserLastLoginTime
  8. {
  9. public string UserNo { get; set; }
  10. public Nullable<System.DateTime> TimeLastLogin { get; set; }
  11. public string SysName { get; set; }
  12. public string SysNo { get; set; }
  13. }
  14. }