51 lines
1.5 KiB
C#
51 lines
1.5 KiB
C#
using Api.Framework.Enums;
|
|
using Api.Framework.Tools;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Api.Framework.Model
|
|
{
|
|
/// <summary>
|
|
/// 订单冻结规则
|
|
/// </summary>
|
|
public class fl_order_sleep : base_model
|
|
{
|
|
/// <summary>
|
|
/// 金额满足
|
|
/// </summary>
|
|
[Category("属性编辑"), DisplayName("1.佣金条件"), Description("总佣金小于等于多少")]
|
|
public double money { get; set; }
|
|
|
|
/// <summary>
|
|
/// 结算后延迟返佣金(单位:小时)
|
|
/// </summary>
|
|
[Category("属性编辑"), DisplayName("2.延迟结算"), Description("延迟多少小时结算")]
|
|
public int sleep { get; set; }
|
|
|
|
/// <summary>
|
|
/// 联盟类型
|
|
/// </summary>
|
|
[Category("属性编辑"), DisplayName("3.联盟类型"), Description("针对哪个联盟生效")]
|
|
public CpsType cps_type { get; set; }
|
|
|
|
/// <summary>
|
|
/// 不受限的会员组
|
|
/// </summary>
|
|
[Category("属性编辑"), DisplayName("4.不受限会员组"), Description("填写会员分组ID,多个分组,用英文逗号分隔")]
|
|
public string white_groups { get; set; }
|
|
|
|
/// <summary>
|
|
/// 无参构造函数
|
|
/// </summary>
|
|
public fl_order_sleep()
|
|
{
|
|
this.white_groups = string.Empty;
|
|
}
|
|
|
|
}
|
|
}
|