namespace WX.CRM.DataSynFactory.Templates { public class Client_SubProduct { public int SUBPRODUCTID { get; set; } public int PRODUCTID { get; set; } public string SUBPRODUCTNAME { get; set; } public string SUBPRODUCTDESC { get; set; } public decimal? PRICE { get; set; } public decimal? RIGHTPERIOD { get; set; } public string RIGHTUNIT { get; set; } public decimal? ISVALID { get; set; } public decimal? ORDEROPENTYPE { get; set; } public string OPENDATE { get; set; } public string ENDDATE { get; set; } public int SORT { get; set; } public string PRODUCTALIAS { get; set; } 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; } /// /// 是否合规,1:是,0:否。主要在线订单同步到线下的时候,根据该状态值来判断是否写入合同数据 /// public int IsCompliance { get; set; } public int CanUpgrade { get; set; } /// /// 产品的分类,主要用来标注同类型的产品 /// public int? Category { get; set; } /// /// 升级订单,是否要关闭被升级订单权限 /// public int? CloseUpgradeRole { get; set; } /// /// 第三方订单分类 /// public int? ThirdOrderCate { get; set; } public int? MidProductId { get; set; } public int? Mid { get; set; } public string Mids { get; set; } public int? IsGift { get; set; } public int? IsOnlineBuy { get; set; } public string BuyLink { get; set; } public string CallBackLink { get; set; } public string Att { get; set; } public string Remark { get; set; } public string ProductExt { get; set; } public string DISCOUNT { get; set; } public int ISDISCOUNT { get; set; } public string CUSTOMPRICE { get; set; } public string productTxt3 { get; set; } //public int? Channel { get; set; } //public string CompanyCode { get; set; } } }