sunpengfei
2025-06-11 0ee3e9996050bd0df360367af28738acea9cdfc6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
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; }
    }
}