namespace WX.CRM.Model.Entity { using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; [Table("UPDEV.WX_SZZYSUBPRODUCT")] public partial class WX_SZZYSUBPRODUCT { [Key] public decimal SUBPRODUCTID { get; set; } public decimal PRODUCTID { get; set; } [StringLength(50)] public string SUBPRODUCTNAME { get; set; } [StringLength(4000)] public string SUBPRODUCTDESC { get; set; } public decimal? PRICE { get; set; } public decimal? RIGHTPERIOD { get; set; } [StringLength(50)] public string RIGHTUNIT { get; set; } public decimal? ISVALID { get; set; } public decimal? ORDEROPENTYPE { get; set; } [StringLength(20)] public string OPENDATE { get; set; } [StringLength(20)] public string ENDDATE { get; set; } public int SORT { get; set; } [StringLength(50)] public string PRODUCTALIAS { get; set; } [StringLength(50)] public string PRODUCTCODE { get; set; } /// /// 0-单一产品、1-组合产品 /// public decimal PRODUCTTYPE { get; set; } public decimal PRODUCTLEVEL { get; set; } public decimal PRODUCTINVESTTIME { get; set; } public decimal PRODUCTINVESTTYPE { get; set; } public decimal MID { get; set; } public int ISGIFT { get; set; } public decimal? ISONLINEBUY { get; set; } public string BUYLINK { get; set; } public decimal CANUPGRADE { get; set; } public decimal? CATEGORY { get; set; } public string CALLBACKLINK { get; set; } public int MIDPRODUCTID { get; set; } public decimal ISCOMPLIANCE { get; set; } public string MIDS { get; set; } public decimal CLOSEUPGRADEROLE { get; set; } public decimal THIRDORDERCATE { get; set; } public string ATT { get; set; } public string REMARK { get; set; } public string PRODUCTEXT { get; set; } public string DISCOUNT { get; set; } public string CUSTOMPRICE { get; set; } public decimal? ISDISCOUNT { get; set; } //public decimal CHANNEL { get; set; } //public string COMPANYCODE { get; set; } public decimal? ISSHOW { get; set; } public string HID_DISCOUNT { get; set; } public string HID_CUSTOMPRICE { get; set; } } }