using LifePayment.Domain.Shared; using System; using System.Collections.Generic; using Volo.Abp; using Volo.Abp.Domain.Entities.Auditing; namespace LifePayment.Domain.Models { public partial class User : FullAuditedEntity, IDataUserFilter { public User() { UserRoles = new HashSet(); } /// /// 名称 /// public string Name { get; set; } /// /// 登录用户名 /// public string UserName { get; set; } /// /// 用户手机号 /// public string PhoneNumber { get; set; } /// /// 用户端Id /// public string ClientId { get; set; } /// /// 小程序OpenId /// public string OpenId { get; set; } /// /// 账户余额 /// public decimal Amount { get; set; } /// /// 账户是否锁住(是否禁用),默认为0未锁住即未禁用 /// public bool? IsLocked { get; set; } /// /// 注册类型:1为企业,2为个人 /// public int Type { get; set; } /// /// 企业类型 /// public EnterpriseTypeEnum? AuthType { get; set; } public DateTime? LastLoginTime { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 企业名称 /// public string EnterpriseName { get; set; } /// /// 联系人 /// public string Contact { get; set; } /// /// 联系电话 /// public string ContactPhone { get; set; } /// /// 绑定邮箱地址 /// public string BindEmailAddress { get; set; } /// /// 个人信息邮箱地址 /// public string UserInfoEmailAddress { get; set; } /// /// 用户头像地址 /// public string AvatarUrl { get; set; } /// /// 性别 /// public GenderTypeEnum? GenderType { get; set; } /// /// 职称 /// public string JobTitle { get; set; } /// /// 省code /// public int? ProvinceCode { get; set; } /// /// 市code /// public int? CityCode { get; set; } /// /// 区县code /// public int? CountyCode { get; set; } /// /// 省 /// public string ProvinceName { get; set; } /// /// 市 /// public string CityName { get; set; } /// /// 区县 /// public string CountyName { get; set; } /// /// 详细地址 /// public string AddressDetail { get; set; } /// /// 纬度 /// public decimal? AddressLatitude { get; set; } /// /// 经度 /// public decimal? AddressLongitude { get; set; } /// /// 微信二维码图片 /// public string WxQrCodeUrl { get; set; } /// /// MatchMaking小程序OpenId /// public string MatchMakingOpenId { get; set; } /// /// im腾讯用户id /// public string IMTencentUserId { get; set; } /// /// 所属公司id /// public Guid? CompanyOrgId { get; set; } /// /// 所属部门id /// public Guid? DepartmentOrgId { get; set; } /// /// 产业园区id /// public Guid? IndustrialParkId { get; set; } public ICollection UserRoles { get; set; } } }