using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Hg.Core.Entity { [Table("WX_SZZYSUBPRODUCT")] public partial class WX_SZZYSUBPRODUCT { [Key] [DatabaseGenerated(DatabaseGeneratedOption.None)] 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 int? RIGHTPERIOD { get; set; } public string? RIGHTUNIT { get; set; } public int? ISVALID { get; set; } public int? 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 int PRODUCTTYPE { get; set; } public int PRODUCTLEVEL { get; set; } public int PRODUCTINVESTTIME { get; set; } public int 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 int IsDelete { get; set; } public int? LableNameId { get; set; } public int SettleType { get; set; } //public int? Channel { get; set; } //public string? CompanyCode { get; set; } /// /// 1:需要风控才能开通订单 2:不需要风控开通订单 /// public int? NeedFK { get; set; } /// /// 1:自动开通 0:不自动开通 /// public int? AutomaticOpen { get; set; } /// /// 是否交付 /// public int? DeliverType { get; set; } /// /// 交付可选方式(1:可邮件,2不可邮件) /// public int? DeliverPermission { get; set; } /// /// 在线交付地址 /// public string? DeliverUrl { get; set; } } }