username@email.com
2023-03-27 0d96ff4e0833d6a2813a969e1ae0a48f27eee497
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
using System;
using System.Collections.Generic;
using System.Text;
 
namespace DTO.zcUserInfoN_db
{
    public class FrameworkUserDTO
    {
        public Guid Id { get; set; }
        public string Email { get; set; }
        public int? Gender { get; set; }
        public string CellPhone { get; set; }
        public string HomePhone { get; set; }
        public string Address { get; set; }
        public string ZipCode { get; set; }
        public int IsIndividual { get; set; }
        public DateTime? CreateTime { get; set; }
        public string CreateTimeName { get; set; }
        public string CreateBy { get; set; }
        public DateTime? UpdateTime { get; set; }
        public string UpdateBy { get; set; }
        public string Itcode { get; set; }
        public string Password { get; set; }
        public string Name { get; set; }
        public bool IsValid { get; set; }
        public Guid? PhotoId { get; set; }
        public string TenantCode { get; set; }
        public string WxOpenid { get; set; }
        public int? Agent { get; set; }
        public string CustomerId { get; set; }
        public string CustomerName { get; set; }
    }
 
    public class FrameworkUserSearch : SearchEntity
    {
        public string Itcode { get; set; }
        public string Name { get; set; }
        public string ShifouGuanluan { get; set; }
 
        public string Createtime { get; set; }
 
    }
}