package com.ruoyi.account.vo;
|
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
@Data
|
public class CommissionDate {
|
/**
|
* 日期
|
*/
|
private String date;
|
|
/**
|
* 普通会员分佣
|
*/
|
private BigDecimal normalCommission;
|
|
/**
|
* 黄金会员分佣
|
*/
|
private BigDecimal goldCommission;
|
|
/**
|
* 钻石会员分佣
|
*/
|
private BigDecimal diamondCommission;
|
|
/**
|
* 准代理分佣
|
*/
|
private BigDecimal agentCommission;
|
|
/**
|
* 代理分佣
|
*/
|
private BigDecimal superAgentCommission;
|
|
/**
|
* 总代分佣
|
*/
|
private BigDecimal topAgentCommission;
|
|
/**
|
* 合伙人分佣
|
*/
|
private BigDecimal partnerCommission;
|
|
/**
|
* 用户分佣总金额
|
*/
|
private BigDecimal totalCommission;
|
|
/**
|
* 门店服务费分佣
|
*/
|
private BigDecimal serviceChargeCommission;
|
|
/**
|
* 绑定门店分佣
|
*/
|
private BigDecimal associatedUserCommission;
|
|
/**
|
* 绑定下级门店分佣
|
*/
|
private BigDecimal bindLowerLevelStoresCommission;
|
}
|