12345678910111213141516171819202122232425262728293031323334353637 |
- using System;
- using System.Collections.Generic;
- #nullable disable
- namespace YLShipBuildLandMap.Entity
- {
- public partial class SysUser
- {
- public SysUser()
- {
- SysAnnouncementSysUser = new HashSet<SysAnnouncementSysUser>();
- SysNoticeHistory = new HashSet<SysNoticeHistory>();
- SysUserSysRole = new HashSet<SysUserSysRole>();
- }
- 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; }
- public virtual ICollection<SysAnnouncementSysUser> SysAnnouncementSysUser { get; set; }
- public virtual ICollection<SysNoticeHistory> SysNoticeHistory { get; set; }
- public virtual ICollection<SysUserSysRole> SysUserSysRole { get; set; }
- }
- }
|