using System; using System.Linq; using System.Text; using SqlSugar; namespace SA.Entity.zxdcrm_Models { /// ///客户资料表 /// [SugarTable("res_customerdetail")] public partial class ResCustomerdetail { public ResCustomerdetail(){ } /// /// Desc:资源id /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,ColumnName="resid")] public string Resid {get;set;} /// /// Desc:账户 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="caccount")] public int? Caccount {get;set;} /// /// Desc:邮箱 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="email")] public string? Email {get;set;} /// /// Desc:姓名 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="cname")] public string? Cname {get;set;} /// /// Desc:性别 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="gender")] public string? Gender {get;set;} /// /// Desc:生日 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="birthday")] public DateTime? Birthday {get;set;} /// /// Desc:省 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="provinceid")] public int? Provinceid {get;set;} /// /// Desc:城市 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="cityid")] public int? Cityid {get;set;} /// /// Desc:详细地址 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="address")] public string? Address {get;set;} /// /// Desc:客户类型 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="customertypeid")] public string? Customertypeid {get;set;} /// /// Desc:资金类型 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="amounttypeid")] public string? Amounttypeid {get;set;} /// /// Desc:工作 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="jobtypeid")] public string? Jobtypeid {get;set;} /// /// Desc:操作习惯类型 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="operationtype")] public string? Operationtype {get;set;} /// /// Desc:MSN /// Default: /// Nullable:True /// [SugarColumn(ColumnName="msn")] public string? Msn {get;set;} /// /// Desc:qq /// Default: /// Nullable:True /// [SugarColumn(ColumnName="qq")] public string? Qq {get;set;} /// /// Desc:FAX /// Default: /// Nullable:True /// [SugarColumn(ColumnName="fax")] public string? Fax {get;set;} /// /// Desc:来源大类 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="customerfrombig")] public string? Customerfrombig {get;set;} /// /// Desc:主号码地区 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="primarynumberaddress")] public string? Primarynumberaddress {get;set;} /// /// Desc:特别提醒 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="specialmemo")] public string? Specialmemo {get;set;} /// /// Desc:创建人 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="createuser")] public int? Createuser {get;set;} /// /// Desc:修改时间 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="utime")] public DateTime? Utime {get;set;} /// /// Desc:修改人 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="updateuser")] public int? Updateuser {get;set;} /// /// Desc:是否主号码 /// Default: /// Nullable:False /// [SugarColumn(ColumnName="isprimarynum")] public int Isprimarynum {get;set;} /// /// Desc:证卷之星用户ID /// Default: /// Nullable:True /// [SugarColumn(ColumnName="zx_userid")] public string? Zx_userid {get;set;} /// /// Desc:备注 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="remark")] public string? Remark {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="customercategory")] public string? Customercategory {get;set;} } }