using Api.Framework.Enums;
using Api.Framework.SDK;
using Api.Framework.Tools;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Api.Framework.Model
{
///
/// 查询记录
///
public class fl_query_hist : base_model
{
///
/// cps类型
///
public CpsType type { get; set; }
///
/// 商品ID
///
public string itemid { get; set; }
///
/// 标题
///
public string title { get; set; }
///
/// 机器人ID
///
public string robot_name { get; set; }
///
/// 机器人类型
///
public ChatType robot_type { get; set; }
///
/// 用户ID
///
public long userid { get; set; }
///
/// 群号
///
public string groupid { get; set; }
///
/// 推广位ID
///
public string adzoneid { get; set; }
///
/// 创建时间
///
public DateTime crt_time { get; set; }
///
/// 店铺ID
///
public string mallid { get; set; }
///
/// 计算配置
///
public string compute_configdic { get; set; }
///
/// 是否通知多人
///
public bool is_multiple { get; set; }
}
///
/// 查询时的计算配置
///
public class Compute
{
///
/// 返利类型
///
public SubsidyType SubsidyType { get; set; }
///
/// 是否为独立比例
///
public bool IsPrivateRatio { get; set; }
///
/// 补贴值 [为私人比例时:直接为比例,其他以系统设置补贴为准]
///
public double Subsidy { get; set; }
///
/// 用户分组补贴类型
///
public SubsidyType GroupSubsidyType { get; set; }
///
/// 用户分组补贴值()
///
public double GroupSubsidy { get; set; }
///
/// 系统设置的扣除类型
///
public AwardDepotType AwardDepot { get; set; }
///
/// 系统设置的一级提成
///
public int AwardOne { get; set; }
///
/// 系统设置的二级提成
///
public int AwardTwo { get; set; }
///
/// 系统设置的三级提成
///
public int AwardThree { get; set; }
///
/// 系统设置的群主提成
///
public int AwardCreator { get; set; }
}
}