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; } } }