42 lines
1.3 KiB
C#
42 lines
1.3 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_ratio_info : base_model
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 佣金
|
|||
|
/// </summary>
|
|||
|
[Category("属性编辑"), DisplayName("1.佣金条件"), Description("总佣金小于等于这个值,会采用该比例!")]
|
|||
|
public double comm { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 返点数值
|
|||
|
/// </summary>
|
|||
|
[Category("属性编辑"), DisplayName("2.返利数值"), Description("满足条件的佣金,返利多少!")]
|
|||
|
public double subsidy_num { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 补贴类型
|
|||
|
/// </summary>
|
|||
|
[Category("属性编辑"), DisplayName("3.返利类型"), DefaultValue(SubsidyType.百分比), Description("通过百分比,还是固定值返利!")]
|
|||
|
public SubsidyType subsidy_type { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// CPS类型
|
|||
|
/// </summary>
|
|||
|
[Category("属性编辑"), DisplayName("4.联盟类型"), Description("针对哪个联盟平台生效")]
|
|||
|
public CpsType cps_type { get; set; }
|
|||
|
}
|
|||
|
}
|