using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace SA.Entity.zxdcrm_audit_Models { /// /// /// [SugarTable("module_price")] public class module_price { /// /// /// [SugarColumn(ColumnName="id" ,IsPrimaryKey = true ,IsIdentity = true )] public int id { get; set; } /// /// /// [SugarColumn(ColumnName="orderid" )] public int? orderid { get; set; } /// /// /// [SugarColumn(ColumnName="szzyorderid" )] public string szzyorderid { get; set; } =""; /// /// /// 默认值: 0 /// [SugarColumn(ColumnName="moduleid" )] public string moduleid { get; set; } =""; /// /// /// [SugarColumn(ColumnName="starttime2" )] public DateTime? starttime2 { get; set; } /// /// /// [SugarColumn(ColumnName="endtime2" )] public DateTime? endtime2 { get; set; } /// /// /// [SugarColumn(ColumnName="otime2" )] public DateTime? otime2 { get; set; } /// /// /// [SugarColumn(ColumnName="ctime2" )] public DateTime? ctime2 { get; set; } /// /// /// [SugarColumn(ColumnName="orderPrice" )] public decimal? orderPrice { get; set; } /// /// 最终计算了苹果、华为、魅族支付手续费 /// [SugarColumn(ColumnName="modulePrice" )] public decimal? modulePrice { get; set; } /// /// /// [SugarColumn(ColumnName="midproductid" )] public int? midproductid { get; set; } /// /// /// [SugarColumn(ColumnName="username" )] public string username { get; set; } =""; /// /// 开通(天) /// [SugarColumn(ColumnName="opendays2" )] public int? opendays2 { get; set; } /// /// 后面补充的 /// 默认值: 0 /// [SugarColumn(ColumnName="isBu" )] public int? isBu { get; set; } /// /// 是否是一天的订单 /// 默认值: 0 /// [SugarColumn(ColumnName="isoneday" )] public int? isoneday { get; set; } /// /// 渠道号 /// [SugarColumn(ColumnName="channel" )] public int? channel { get; set; } /// /// 模块原始金额 /// [SugarColumn(ColumnName="modulePrice2" )] public decimal? modulePrice2 { get; set; } /// /// 虚拟订单(扣减原单的剩余价值) 0不是 1是 /// 默认值: 0 /// [SugarColumn(ColumnName="isVirOrder" )] public int? isVirOrder { get; set; } /// /// 10是,20否 区分是否生成退款程序时ins数据,用于多次操作时删除使用 /// 默认值: 20 /// [SugarColumn(ColumnName="isRunRefundIns" )] public int? isRunRefundIns { get; set; } } }