83 lines
2.3 KiB
C#
83 lines
2.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Crm.Core.Entity.Crm
|
|
{
|
|
[Table("RES_CUSTOMERDETAIL")]
|
|
public partial class RES_CUSTOMERDETAIL
|
|
{
|
|
[Key]
|
|
public string? RESID { get; set; }
|
|
|
|
public decimal? CACCOUNT { get; set; }
|
|
|
|
public string? EMAIL { get; set; }
|
|
|
|
public string? CNAME { get; set; }
|
|
|
|
public string? GENDER { get; set; }
|
|
|
|
public DateTime? BIRTHDAY { get; set; }
|
|
|
|
public decimal? PROVINCEID { get; set; }
|
|
|
|
public decimal? CITYID { get; set; }
|
|
|
|
public string? ADDRESS { get; set; }
|
|
|
|
public string? CUSTOMERTYPEID { get; set; }
|
|
|
|
public string? AMOUNTTYPEID { get; set; }
|
|
|
|
public string? JOBTYPEID { get; set; }
|
|
|
|
public string? OPERATIONTYPE { get; set; }
|
|
|
|
public string? MSN { get; set; }
|
|
|
|
public string? QQ { get; set; }
|
|
|
|
public string? FAX { get; set; }
|
|
|
|
public string? CUSTOMERFROMBIG { get; set; }
|
|
|
|
public string? PRIMARYNUMBERADDRESS { get; set; }
|
|
|
|
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 int? RELATION { get; set; }
|
|
public virtual RES_CUSTOMER RES_CUSTOMER { get; set; }
|
|
public int? ISBOUND { get; set; }//是否绑定客服
|
|
}
|
|
}
|