ComplianceServer/oldcode/Core.Model/Entity/RES_CUSTOMERDETAIL.cs

78 lines
1.9 KiB
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace CRM.Core.Model.Entity
{
[Table("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 virtual RES_CUSTOMER RES_CUSTOMER { get; set; }
}
}