using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace LifePayment.Application.Contracts
|
{
|
public class SyncUser
|
{
|
public Guid Id { get; set; }
|
public string Name { get; set; }
|
public string UserName { get; set; }
|
public string PhoneNumber { get; set; }
|
public int? Type { get; set; }
|
public int AuthType { get; set; }
|
public string ClientId { get; set; }
|
public string OpenId { get; set; }
|
public decimal? Amount { get; set; }
|
public bool? IsLocked { get; set; }
|
public string Remark { get; set; }
|
public DateTime? LastLoginTime { get; set; }
|
public DateTime CreationTime { get; set; }
|
public Guid? CreatorId { get; set; }
|
public DateTime? LastModificationTime { get; set; }
|
public Guid? LastModifierId { get; set; }
|
public bool? IsDeleted { get; set; }
|
public Guid? DeleterId { get; set; }
|
public DateTime? DeletionTime { 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 int? GenderType { get; set; }
|
public string JobTitle { get; set; }
|
public int? ProvinceCode { get; set; }
|
public int? CityCode { get; set; }
|
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 string WxQrCodeUrl { get; set; }
|
public decimal? AddressLatitude { get; set; }
|
public decimal? AddressLongitude { get; set; }
|
public int? MatchMakingIdentity { get; set; }
|
public string MatchMakingOpenId { get; set; }
|
public string IMTencentUserId { get; set; }
|
public Guid? CompanyOrgId { get; set; }
|
public Guid? DepartmentOrgId { get; set; }
|
public Guid? IndustrialParkId { get; set; }
|
}
|
}
|