SysUser.cs 949 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace OrderSystem.Entity
  5. {
  6. public partial class SysUser
  7. {
  8. public SysUser()
  9. {
  10. }
  11. public Guid UserId { get; set; }
  12. public string LoginId { get; set; }
  13. public string Password { get; set; }
  14. public string Name { get; set; }
  15. public int? RecordStatus { get; set; }
  16. public Guid? CreateUserId { get; set; }
  17. public DateTime? CreateTime { get; set; }
  18. public Guid? ModifyUserId { get; set; }
  19. public DateTime? ModifyTime { get; set; }
  20. public string WeChatUserId { get; set; }
  21. public DateTime? WeChatLoginTime { get; set; }
  22. public string CmWorkLinkAccountDomain { get; set; }
  23. public string CmWorkLinkAccountPsid { get; set; }
  24. public string CmWorkLinkAccountPstel { get; set; }
  25. public DateTime? CmWorkLinkLoginTime { get; set; }
  26. }
  27. }