123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- #nullable disable
- namespace OrderSystem.Entity
- {
- public partial class SysUser
- {
- public SysUser()
- {
- }
- public Guid UserId { get; set; }
- public string LoginId { get; set; }
- public string Password { get; set; }
- public string Name { get; set; }
- public int? RecordStatus { get; set; }
- public Guid? CreateUserId { get; set; }
- public DateTime? CreateTime { get; set; }
- public Guid? ModifyUserId { get; set; }
- public DateTime? ModifyTime { get; set; }
- public string WeChatUserId { get; set; }
- public DateTime? WeChatLoginTime { get; set; }
- public string CmWorkLinkAccountDomain { get; set; }
- public string CmWorkLinkAccountPsid { get; set; }
- public string CmWorkLinkAccountPstel { get; set; }
- public DateTime? CmWorkLinkLoginTime { get; set; }
- }
- }
|