You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.1 KiB
50 lines
1.1 KiB
package com.ruoyi.course.domain;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
|
|
import java.math.BigDecimal;
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* 预约学员信息
|
|
*/
|
|
@Data
|
|
@TableName("sc_commission_plans")
|
|
public class ScCommissionPlans {
|
|
|
|
private Long id;
|
|
//方案名称
|
|
private String planName;
|
|
// 第一阶梯阈值(0-?元)
|
|
private BigDecimal tier1Threshold;
|
|
// 第一阶梯比例(8%)
|
|
private BigDecimal tier1Rate;
|
|
// 第二阶梯阈值(30000)
|
|
private BigDecimal tier2Threshold;
|
|
// 第二阶梯比例(10%)
|
|
private BigDecimal tier2Rate;
|
|
// 第三阶梯阈值(50000)
|
|
private BigDecimal tier3Threshold;
|
|
// 第三阶梯比例(12%)
|
|
private BigDecimal tier3Rate;
|
|
|
|
// 第四阶梯比例(15%)
|
|
private BigDecimal tier4Rate;
|
|
// 续费率(5%)
|
|
private BigDecimal renewalRate;
|
|
// 转介绍率(8-10%)
|
|
private BigDecimal referralRate;
|
|
// 是否生效(默认0未生效 1生效 )
|
|
private int isActive;
|
|
// 生效日期
|
|
private Date effectiveDate;
|
|
// 创建时间
|
|
private Date createdAt;
|
|
|
|
|
|
|
|
|
|
|
|
}
|