using System; using System.Linq; using System.Text; using SqlSugar; namespace SA.Entity.zxdcrm_Models { /// ///产品表 /// [SugarTable("wx_szzysubproduct_backup220427")] public partial class WxSzzysubproductBackup220427 { public WxSzzysubproductBackup220427(){ } /// /// Desc:产品ID /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,ColumnName="subproductid")] public int Subproductid {get;set;} /// /// Desc:大产品ID /// Default: /// Nullable:False /// [SugarColumn(ColumnName="productid")] public int Productid {get;set;} /// /// Desc:产品名称 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="subproductname")] public string? Subproductname {get;set;} /// /// Desc:产品描述 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="subproductdesc")] public string? Subproductdesc {get;set;} /// /// Desc:金额 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="price")] public decimal? Price {get;set;} /// /// Desc:权限周期 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="rightperiod")] public int? Rightperiod {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="rightunit")] public string? Rightunit {get;set;} /// /// Desc:是否有效 /// Default:1 /// Nullable:True /// [SugarColumn(ColumnName="isvalid")] public int? Isvalid {get;set;} /// /// Desc:0:即时开通 1:指定日期延时开通 /// Default:0 /// Nullable:True /// [SugarColumn(ColumnName="orderopentype")] public int? Orderopentype {get;set;} /// /// Desc:指定开通订单的日期 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="opendate")] public string? Opendate {get;set;} /// /// Desc:指定结束订单的日期 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="enddate")] public string? Enddate {get;set;} /// /// Desc:排序 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="sort")] public int? Sort {get;set;} /// /// Desc:产品别名 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="productalias")] public string? Productalias {get;set;} /// /// Desc:产品编码 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="productcode")] public string? Productcode {get;set;} /// /// Desc:0-单一产品、1-组合产品 /// Default:0 /// Nullable:True /// [SugarColumn(ColumnName="producttype")] public int? Producttype {get;set;} /// /// Desc:产品等级 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="productlevel")] public int? Productlevel {get;set;} /// /// Desc:产品等级 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="productinvesttime")] public int? Productinvesttime {get;set;} /// /// Desc:产品等级 /// Default: /// Nullable:False /// [SugarColumn(ColumnName="productinvesttype")] public int Productinvesttype {get;set;} /// /// Desc:权限id /// Default: /// Nullable:True /// [SugarColumn(ColumnName="mid")] public int? Mid {get;set;} /// /// Desc:是否合规,1:是,0:否。主要在线订单同步到线下的时候,根据该状态值来判断是否写入合同数据 /// Default:1 /// Nullable:True /// [SugarColumn(ColumnName="iscompliance")] public int? Iscompliance {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="mids")] public string? Mids {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="canupgrade")] public int? Canupgrade {get;set;} /// /// Desc:产品分类 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="category")] public int? Category {get;set;} /// /// Desc:是否关闭被升级订单权限 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="closeupgraderole")] public int? Closeupgraderole {get;set;} /// /// Desc:第三方订单分类 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="thirdordercate")] public int? Thirdordercate {get;set;} /// /// Desc:二级分类 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="midproductid")] public int? Midproductid {get;set;} /// /// Desc:是否有赠送 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="isgift")] public int? Isgift {get;set;} /// /// Desc:是否支持在线购买 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="isonlinebuy")] public int? Isonlinebuy {get;set;} /// /// Desc:在线购买链接 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="buylink")] public string? Buylink {get;set;} /// /// Desc:支付成功回调页面 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="callbacklink")] public string? Callbacklink {get;set;} /// /// Desc:附件路径 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="att")] public string? Att {get;set;} /// /// Desc:说明 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="remark")] public string? Remark {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="productext")] public string? Productext {get;set;} /// /// Desc: /// Default:0 /// Nullable:False /// [SugarColumn(ColumnName="isdelete")] public int Isdelete {get;set;} /// /// Desc:标签id /// Default: /// Nullable:True /// [SugarColumn(ColumnName="lablenameid")] public int? Lablenameid {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="settletype")] public int? Settletype {get;set;} } }