namespace WX.CRM.Model.Entity { using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; [Table("UPDEV.RES_CUSTOMERDETAIL")] public partial class RES_CUSTOMERDETAIL { [Key] [StringLength(18)] public string RESID { get; set; } public decimal? CACCOUNT { get; set; } [StringLength(100)] public string EMAIL { get; set; } [StringLength(30)] public string CNAME { get; set; } [StringLength(1)] public string GENDER { get; set; } public DateTime? BIRTHDAY { get; set; } public decimal? PROVINCEID { get; set; } public decimal? CITYID { get; set; } [StringLength(200)] public string ADDRESS { get; set; } [StringLength(50)] public string CUSTOMERTYPEID { get; set; } [StringLength(50)] public string AMOUNTTYPEID { get; set; } [StringLength(50)] public string JOBTYPEID { get; set; } [StringLength(50)] public string OPERATIONTYPE { get; set; } [StringLength(100)] public string MSN { get; set; } [StringLength(20)] public string QQ { get; set; } [StringLength(15)] public string FAX { get; set; } [StringLength(100)] public string CUSTOMERFROMBIG { get; set; } [StringLength(200)] public string PRIMARYNUMBERADDRESS { get; set; } [StringLength(100)] public string SPECIALMEMO { get; set; } public decimal? CREATEUSER { get; set; } public DateTime? UTIME { get; set; } public decimal? UPDATEUSER { get; set; } public short ISPRIMARYNUM { get; set; } public string ZX_USERID { get; set; } public string REMARK { get; set; } public string CUSTOMERCATEGORY { get; set; } public string BIRTHDAYAREA { get; set; } public string DEALER { get; set; } public string OPERATIONTIME { get; set; } public string FREQUENCY { get; set; } public string STOCKPOSITION { get; set; } public decimal? VISITSTATUS { get; set; } public DateTime? VISITTIME { get; set; } public decimal? VISITUSER { get; set; } public string VISITREMARK { get; set; } public string GUPIAO { get; set; } public string PROFITANDLOSS { get; set; } public string RISKTOLERANCE { get; set; } public string BELONGTOPROVINCE { get; set; } public string BELONGTOCITY { get; set; } public virtual RES_CUSTOMER RES_CUSTOMER { get; set; } public int? ISBOUND { get; set; }//ÊÇ·ñ°ó¶¨¿Í·þ public string UMID { get; set; } } }