package com.ruoyi.order.vo;
|
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
@Data
|
public class Price {
|
/**
|
* 现金
|
*/
|
private BigDecimal cash;
|
/**
|
* 积分
|
*/
|
private Integer point;
|
/**
|
* 获取结束时间
|
*/
|
private Long endTime;
|
/**
|
* 现金支付
|
*/
|
private Boolean cashPayment;
|
/**
|
* 积分支付
|
*/
|
private Boolean pointPayment;
|
/**
|
* 可获得消费积分
|
*/
|
private Integer earnSpendingPoints;
|
/**
|
* 上级获得分佣金额
|
*/
|
private BigDecimal superiorSubcommission;
|
/**
|
* 上级获得返佣积分
|
*/
|
private Integer superiorRebatePoints;
|
/**
|
* 获取返佣积分上级类型(1=直推上级,2=直帮上级)
|
*/
|
private String superiorType;
|
/**
|
* 获取分佣金额上级类型(1=直推上级,2=直帮上级)
|
*/
|
private String superiorPriceType;
|
/**
|
* 核销门店可获得服务费
|
*/
|
private BigDecimal servuceShopCharges;
|
/**
|
* 核销门店可获得服务积分
|
*/
|
private Integer servuceShopPoints;
|
/**
|
* 技师可获得服务积分
|
*/
|
private Integer technicianPoints;
|
/**
|
* 绑定门店可获得分佣金额
|
*/
|
private BigDecimal boundShopCharges;
|
/**
|
* 绑定门店可获得返佣积分
|
*/
|
private Integer boundShopPoints;
|
/**
|
* 绑定门店上级门店可获得分佣金额
|
*/
|
private BigDecimal boundShopSuperiorsCharges;
|
/**
|
* 绑定门店上级门店可获得返佣积分
|
*/
|
private Integer boundShopSuperiorsPoints;
|
}
|