123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Flyinsono.DBCopy.Tool.Entities
- {
- internal class UsersBak
- {
- public string _id { get; set; }
- public DateTime CreateTime { get; set; }
- public DateTime UpdateTime { get; set; }
- public bool IsDeleted { get; set; }
- public string Name { get; set; }
- public string Password { get; set; }
- public string LastName { get; set; }
- public string FirstName { get; set; }
- public string FullName { get; set; }
- public string Phone { get; set; }
- public string Email { get; set; }
- public AdminInfo CreateAdmin { get; set; }
- /// <summary>
- /// Terminals assigned to user
- /// </summary>
- public IList<UserTerminalInfo> Terminals { get; set; }
- /// <summary>
- /// Applications assigned to user
- /// </summary>
- public IList<AdminInfo> Features { get; set; }
- public IList<OrganizationInfo> Organizations { get; set; }
- public IList<PushFailedMessage> PushFailedMessages { get; private set; }
- public IList<PushFailedSystemMessage> PushFailedSystemMessages { get; private set; }
- public IList<AdminInfo> Owners { get; private set; }
- public byte[] SmallHeadImage { get; set; }
- public string HeadImage { get; set; }
- public bool IsActive { get; set; }
- public string NickName { get; set; }
- public GenderType GenderType { get; set; }
- public string Region { get; set; }
- public string HospitalId { get; set; }
- public string Hospital { get; set; }
- public string Department { get; set; }
- public string CertificateId { get; set; }
- public UserTypes UserType { get; set; }
- public UserPermissions UserPermission { get; set; }
- public int Rank { get; set; }
- public string Introduction { get; set; }
- public string Unionid { get; set; }
- /// <summary>
- /// Gets or sets the Openid of this user.
- /// </summary>
- public string Openid { get; set; }
- public AdminInfo ChargeGroupInfo { get; set; }
- /// <summary>
- /// direct server name
- /// </summary>
- public string DirectServer { get; set; }
- public string ElectronSignUrl { get; set; }
- /// <summary>
- /// 登录认证类型
- /// </summary>
- public LoginAuthType AuthType { get; set; }
- /// <summary>
- /// 排序后的专家列表
- /// </summary>
- /// <value></value>
- public IList<ExpertSortInfo> SortedExperts { get; set; } = new List<ExpertSortInfo>();
- /// <summary>
- /// 排班信息
- /// </summary>
- /// <value></value>
- public IList<ShiftInfo> Shifts { get; set; } = new List<ShiftInfo>();
- /// <summary>
- /// 开启上传记录通知
- /// </summary>
- public bool OpenUploadRecordNotify { get; set; }
- }
- }
|