using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace SA.Entity.zxdcrm_audit_Models { /// /// /// [SugarTable("mon_order_module_act")] public class mon_order_module_act { /// /// /// [SugarColumn(ColumnName="xuhao" ,IsPrimaryKey = true ,IsIdentity = true )] public int xuhao { get; set; } /// /// /// [SugarColumn(ColumnName="id" )] public string id { get; set; } =""; /// /// 执行时间 /// [SugarColumn(ColumnName="actday" )] public DateTime actday { get; set; } /// /// 执行月份 /// [SugarColumn(ColumnName="actmonth" )] public int? actmonth { get; set; } /// /// 用户名 /// [SugarColumn(ColumnName="username" )] public string username { get; set; } =""; /// /// 权限ID /// [SugarColumn(ColumnName="moduleid" )] public string moduleid { get; set; } =""; /// /// 上期剩余金额 /// [SugarColumn(ColumnName="lastprice" )] public decimal? lastprice { get; set; } /// /// 消耗金额 /// [SugarColumn(ColumnName="useprice" )] public decimal? useprice { get; set; } /// /// 订单金额 /// [SugarColumn(ColumnName="payprice" )] public decimal? payprice { get; set; } /// /// 剩余价值 /// [SugarColumn(ColumnName="actprice" )] public decimal actprice { get; set; } /// /// 上个状态剩余时长 /// [SugarColumn(ColumnName="lastdaycount" )] public int? lastdaycount { get; set; } /// /// 消耗时长 /// [SugarColumn(ColumnName="usedaycount" )] public int? usedaycount { get; set; } /// /// 订单时长 /// [SugarColumn(ColumnName="ordercount" )] public int? ordercount { get; set; } /// /// 总天数 /// [SugarColumn(ColumnName="daycount" )] public int daycount { get; set; } /// /// 1:已结,0:未结 /// [SugarColumn(ColumnName="status" )] public int status { get; set; } /// /// 订单号 /// [SugarColumn(ColumnName="orderid" )] public int orderid { get; set; } /// /// 写入时间 /// [SugarColumn(ColumnName="ctime" )] public DateTime ctime { get; set; } /// /// /// [SugarColumn(ColumnName="remark" )] public string remark { get; set; } =""; /// /// /// [SugarColumn(ColumnName="otime" )] public DateTime? otime { get; set; } /// /// 开通月份 /// [SugarColumn(ColumnName="omonth" )] public int? omonth { get; set; } /// /// /// [SugarColumn(ColumnName="channel" )] public int? channel { get; set; } /// /// 扣除合同取得成本之后的价值 /// [SugarColumn(ColumnName="orderprice" )] public decimal? orderprice { get; set; } /// /// 扣除合同取得成本之后的剩余价值 /// [SugarColumn(ColumnName="lastorderprice" )] public decimal? lastorderprice { get; set; } /// /// 合同取得成本 /// [SugarColumn(ColumnName="costprice" )] public decimal? costprice { get; set; } /// /// 合同取得成本剩余价值 /// [SugarColumn(ColumnName="lastcostprice" )] public decimal? lastcostprice { get; set; } /// /// 成本比例 /// [SugarColumn(ColumnName="costrate" )] public decimal? costrate { get; set; } /// /// 收入 /// [SugarColumn(ColumnName="income" )] public decimal? income { get; set; } /// /// 预收 /// [SugarColumn(ColumnName="depositreceived" )] public decimal? depositreceived { get; set; } /// /// 结算月份 /// [SugarColumn(ColumnName="finishmonth" )] public int? finishmonth { get; set; } /// /// 结算状态 /// [SugarColumn(ColumnName="finishstatus" )] public int? finishstatus { get; set; } } }