namespace WX.CRM.Model.Entity { using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; [Table("UPDEV.RES_CUSTOMERFEEDBACK")] public partial class RES_CUSTOMERFEEDBACK { [Required] [StringLength(100)] public string CUSTOMERID { get; set; } [StringLength(50)] public string CUSTOMERNAME { get; set; } [StringLength(20)] public string MOBILE { get; set; } [StringLength(1)] public string GENDER { get; set; } [StringLength(1)] public string AGELEVEL { get; set; } public decimal? PROVINCEID { get; set; } public decimal? CITYID { get; set; } [StringLength(1)] public string INVESTAGE { get; set; } [StringLength(1)] public string INVESTPREFERENCE { get; set; } [StringLength(1)] public string ISQUALIFIEDINVESTOR { get; set; } [StringLength(1)] public string ISINVESTYD { get; set; } public DateTime? PAYMENTTIME { get; set; } public decimal? FINANCINGVOLUME { get; set; } public decimal? PREDICTDEADLINE { get; set; } public decimal? EXPECTEDREVENUE { get; set; } [StringLength(1)] public string EQUITYPRODUCT { get; set; } public decimal? MAXDEFICIT { get; set; } [StringLength(50)] public string EMAIL { get; set; } [StringLength(300)] public string REMARK { get; set; } [Key] public decimal PKID { get; set; } public DateTime? CTIME { get; set; } } }