SysUser.cs 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace YLShipBuildLandMap.Entity
  5. {
  6. public partial class SysUser
  7. {
  8. public SysUser()
  9. {
  10. SysAnnouncementSysUser = new HashSet<SysAnnouncementSysUser>();
  11. SysNoticeHistory = new HashSet<SysNoticeHistory>();
  12. SysUserSysRole = new HashSet<SysUserSysRole>();
  13. }
  14. public Guid UserId { get; set; }
  15. public string LoginId { get; set; }
  16. public string Password { get; set; }
  17. public string Name { get; set; }
  18. public int? RecordStatus { get; set; }
  19. public Guid? CreateUserId { get; set; }
  20. public DateTime? CreateTime { get; set; }
  21. public Guid? ModifyUserId { get; set; }
  22. public DateTime? ModifyTime { get; set; }
  23. public string WeChatUserId { get; set; }
  24. public DateTime? WeChatLoginTime { get; set; }
  25. public string CmWorkLinkAccountDomain { get; set; }
  26. public string CmWorkLinkAccountPsid { get; set; }
  27. public string CmWorkLinkAccountPstel { get; set; }
  28. public DateTime? CmWorkLinkLoginTime { get; set; }
  29. public virtual ICollection<SysAnnouncementSysUser> SysAnnouncementSysUser { get; set; }
  30. public virtual ICollection<SysNoticeHistory> SysNoticeHistory { get; set; }
  31. public virtual ICollection<SysUserSysRole> SysUserSysRole { get; set; }
  32. }
  33. }