38 lines
813 B
C#
38 lines
813 B
C#
|
using Api.Framework.Enums;
|
|||
|
using Api.Framework.Tools;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Api.Framework.Model
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 查询历史比例
|
|||
|
/// </summary>
|
|||
|
public class fl_query_ratio_hist : base_model
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 平台类型
|
|||
|
/// </summary>
|
|||
|
public CpsType cpstype { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 订单id
|
|||
|
/// </summary>
|
|||
|
public long db_orderid { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 历史的计算比例
|
|||
|
/// </summary>
|
|||
|
public string compute_config { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 创建时间
|
|||
|
/// </summary>
|
|||
|
public DateTime createtime { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
}
|