Zxd.Core/code/Zxd.Entity/Zxd/RES_CUSTOMERDETAIL.cs

38 lines
1.3 KiB
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Zxd.Entity.Zxd
{
[Table("RES_CUSTOMERDETAIL")]
public class RES_CUSTOMERDETAIL
{
[Key]
public string RESID { get; set; }
public string caccount { get; set; }
public string email { get; set; }
public string cname { get; set; }
public string gender { get; set; }
public DateTime birthday { get; set; }
public int provinceid { get; set; }
public int 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 int createuser { get; set; }
public DateTime utime { get; set; }
public int updateuser { get; set; }
public int isprimarynum { get; set; }
public string zx_userid { get; set; }
public string remark { get; set; }
}
}