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 { /// /// 订单冻结规则 /// public class fl_order_sleep : base_model { /// /// 金额满足 /// [Category("属性编辑"), DisplayName("1.佣金条件"), Description("总佣金小于等于多少")] public double money { get; set; } /// /// 结算后延迟返佣金(单位:小时) /// [Category("属性编辑"), DisplayName("2.延迟结算"), Description("延迟多少小时结算")] public int sleep { get; set; } /// /// 联盟类型 /// [Category("属性编辑"), DisplayName("3.联盟类型"), Description("针对哪个联盟生效")] public CpsType cps_type { get; set; } /// /// 不受限的会员组 /// [Category("属性编辑"), DisplayName("4.不受限会员组"), Description("填写会员分组ID,多个分组,用英文逗号分隔")] public string white_groups { get; set; } /// /// 无参构造函数 /// public fl_order_sleep() { this.white_groups = string.Empty; } } }