using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace SA.Entity.zxdcrm_audit_Models { /// /// /// [SugarTable("wx_szzyordermodulerefund")] public class wx_szzyordermodulerefund { /// /// /// [SugarColumn(ColumnName="priid" ,IsPrimaryKey = true ,IsIdentity = true )] public int priid { get; set; } /// /// /// [SugarColumn(ColumnName="id" )] public int? id { get; set; } /// /// /// [SugarColumn(ColumnName="orderid" )] public int? orderid { get; set; } /// /// 渠道 /// [SugarColumn(ColumnName="channel" )] public string channel { get; set; } =""; /// /// 退款时间 /// [SugarColumn(ColumnName="refunddate" )] public DateTime? refunddate { get; set; } /// /// 退款金额 /// [SugarColumn(ColumnName="refundprice" )] public decimal? refundprice { get; set; } /// /// 退款类型 /// [SugarColumn(ColumnName="refundtype" )] public int? refundtype { get; set; } /// /// 退款比例 /// [SugarColumn(ColumnName="refundpercentage" )] public decimal? refundpercentage { get; set; } /// /// /// [SugarColumn(ColumnName="account" )] public string account { get; set; } =""; /// /// /// [SugarColumn(ColumnName="username" )] public string username { get; set; } =""; /// /// /// [SugarColumn(ColumnName="midproductid" )] public string midproductid { get; set; } =""; /// /// /// [SugarColumn(ColumnName="moduleid" )] public string moduleid { get; set; } =""; /// /// /// [SugarColumn(ColumnName="szzyorderid" )] public long? szzyorderid { get; set; } /// /// /// [SugarColumn(ColumnName="ismorepay" )] public int? ismorepay { get; set; } /// /// /// [SugarColumn(ColumnName="starttime2" )] public DateTime? starttime2 { get; set; } /// /// /// [SugarColumn(ColumnName="endtime2" )] public DateTime? endtime2 { get; set; } /// /// /// [SugarColumn(ColumnName="usedays" )] public int? usedays { get; set; } /// /// /// [SugarColumn(ColumnName="opendays2" )] public int? opendays2 { get; set; } /// /// /// [SugarColumn(ColumnName="price2" )] public decimal? price2 { get; set; } /// /// /// [SugarColumn(ColumnName="ctime2" )] public DateTime? ctime2 { get; set; } /// /// /// [SugarColumn(ColumnName="otime2" )] public DateTime? otime2 { get; set; } /// /// /// [SugarColumn(ColumnName="arrivalpay" )] public decimal? arrivalpay { get; set; } /// /// /// [SugarColumn(ColumnName="json_szzy_order_id" )] public string json_szzy_order_id { get; set; } =""; /// /// 剩余天数 /// [SugarColumn(ColumnName="restday" )] public int? restday { get; set; } /// /// 模块初始天数 /// [SugarColumn(ColumnName="module_openday" )] public int? module_openday { get; set; } /// /// 模块初始金额 /// [SugarColumn(ColumnName="module_arrivalpay" )] public decimal? module_arrivalpay { get; set; } /// /// 模块应退金额(*比例) /// [SugarColumn(ColumnName="module_refundprice" )] public decimal? module_refundprice { get; set; } /// /// 区分订单或模块 10为订单 10以外为模块 /// [SugarColumn(ColumnName="is_order" )] public int? is_order { get; set; } /// /// 0否 1 是 /// [SugarColumn(ColumnName="isoneday" )] public string isoneday { get; set; } =""; /// /// 模块应退金额(原始) /// [SugarColumn(ColumnName="module_refundprice_bk" )] public decimal module_refundprice_bk { get; set; } /// /// 10是 20否 是否module_price表抵扣过 /// 默认值: 20 /// [SugarColumn(ColumnName="is_deduction" )] public byte? is_deduction { get; set; } } }