105 lines
3.3 KiB
C#
105 lines
3.3 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using SqlSugar;
|
||
namespace SA.Entity.zxdcrm_audit_Models
|
||
{
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarTable("mon_order_module_income")]
|
||
public class mon_order_module_income
|
||
{
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName="id" ,IsPrimaryKey = true ,IsIdentity = true )]
|
||
public int id { get; set; }
|
||
/// <summary>
|
||
/// 状态表ID
|
||
///</summary>
|
||
[SugarColumn(ColumnName="actid" )]
|
||
public string actid { get; set; } ="";
|
||
/// <summary>
|
||
/// 执行日期
|
||
///</summary>
|
||
[SugarColumn(ColumnName="actday" )]
|
||
public DateTime actday { get; set; }
|
||
/// <summary>
|
||
/// 执行月份
|
||
///</summary>
|
||
[SugarColumn(ColumnName="actmonth" )]
|
||
public int? actmonth { get; set; }
|
||
/// <summary>
|
||
/// 0:order,1:month,2:退款,3:升级摊分
|
||
///</summary>
|
||
[SugarColumn(ColumnName="type" )]
|
||
public int type { get; set; }
|
||
/// <summary>
|
||
/// 收入
|
||
///</summary>
|
||
[SugarColumn(ColumnName="income" )]
|
||
public decimal income { get; set; }
|
||
/// <summary>
|
||
/// 预收账款
|
||
///</summary>
|
||
[SugarColumn(ColumnName="depositreceived" )]
|
||
public decimal depositreceived { get; set; }
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName="useday" )]
|
||
public int? useday { get; set; }
|
||
/// <summary>
|
||
/// 写入时间
|
||
///</summary>
|
||
[SugarColumn(ColumnName="ctime" )]
|
||
public DateTime ctime { get; set; }
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName="orderid" )]
|
||
public int? orderid { get; set; }
|
||
/// <summary>
|
||
/// 开通时间
|
||
///</summary>
|
||
[SugarColumn(ColumnName="otime" )]
|
||
public DateTime? otime { get; set; }
|
||
/// <summary>
|
||
/// 开通月份
|
||
///</summary>
|
||
[SugarColumn(ColumnName="omonth" )]
|
||
public int? omonth { get; set; }
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName="channel" )]
|
||
public int? channel { get; set; }
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName="username" )]
|
||
public string username { get; set; } ="";
|
||
/// <summary>
|
||
/// 扣除合同取得成本之后的价值
|
||
///</summary>
|
||
[SugarColumn(ColumnName="orderprice" )]
|
||
public decimal? orderprice { get; set; }
|
||
/// <summary>
|
||
/// 扣除合同取得成本之后的剩余价值
|
||
///</summary>
|
||
[SugarColumn(ColumnName="lastorderprice" )]
|
||
public decimal? lastorderprice { get; set; }
|
||
/// <summary>
|
||
/// 合同取得成本
|
||
///</summary>
|
||
[SugarColumn(ColumnName="costprice" )]
|
||
public decimal? costprice { get; set; }
|
||
/// <summary>
|
||
/// 合同取得成本剩余价值
|
||
///</summary>
|
||
[SugarColumn(ColumnName="lastcostprice" )]
|
||
public decimal? lastcostprice { get; set; }
|
||
}
|
||
}
|