| 12345678910111213141516171819202122232425 |
- package com.tzy.app.dto;
- import lombok.Data;
- import java.math.BigDecimal;
- @Data
- public class AmountActRule {
- /**会员最小等级*/
- private Integer memberLevel;
- /**单次最小金额,单位分*/
- private BigDecimal singleMinAmount;
- /**单次最大金额,单位分*/
- private BigDecimal singleMaxAmount;
- /**砍一刀单次金额剩余比例,*/
- private int lessAmountRate;
- /**用户参与次数*/
- private Integer userJoinCount;
- /**用户通过分享参与次数*/
- private Integer userShareCount;
- /**次数是否共享,默认0,不共享,1共享次数*/
- private Integer countOpType;
- /**用户限制类型,0不限制,不同用户即可,1:设备id 2:实名*/
- private Integer userLimitType;
- }
|