using System; using System.Linq; using System.Text; using SqlSugar; namespace SA.Entity.zxdcrm_Models { /// /// /// [SugarTable("module_price")] public partial class ModulePrice { public ModulePrice(){ } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true,ColumnName="id")] public int Id {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="orderid")] public int? Orderid {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="szzyorderid")] public string? Szzyorderid {get;set;} /// /// Desc: /// Default:0 /// Nullable:False /// [SugarColumn(ColumnName="moduleid")] public string Moduleid {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="starttime2")] public DateTime? Starttime2 {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="endtime2")] public DateTime? Endtime2 {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="otime2")] public DateTime? Otime2 {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="ctime2")] public DateTime? Ctime2 {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="orderPrice")] public decimal? OrderPrice {get;set;} /// /// Desc:最终计算了苹果、华为、魅族支付手续费 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="modulePrice")] public decimal? ModulePrice3 {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="midproductid")] public int? Midproductid {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="username")] public string? Username {get;set;} /// /// Desc:开通(天) /// Default: /// Nullable:True /// [SugarColumn(ColumnName="opendays2")] public int? Opendays2 {get;set;} /// /// Desc:后面补充的 /// Default:0 /// Nullable:True /// [SugarColumn(ColumnName="isBu")] public int? IsBu {get;set;} /// /// Desc:是否是一天的订单 /// Default:0 /// Nullable:True /// [SugarColumn(ColumnName="isoneday")] public int? Isoneday {get;set;} /// /// Desc:渠道号 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="channel")] public int? Channel {get;set;} /// /// Desc:模块原始金额 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="modulePrice2")] public decimal? ModulePrice2 {get;set;} /// /// Desc:虚拟订单(扣减原单的剩余价值) 0不是 1是 /// Default:0 /// Nullable:True /// [SugarColumn(ColumnName="isVirOrder")] public int? IsVirOrder {get;set;} /// /// Desc:10是,20否 区分是否生成退款程序时ins数据,用于多次操作时删除使用 /// Default:20 /// Nullable:True /// [SugarColumn(ColumnName="isRunRefundIns")] public int? IsRunRefundIns {get;set;} } }