## 对碰配置;

This commit is contained in:
cabbage 2025-05-15 14:42:04 +08:00
parent fe6cc763c5
commit efd70c4ed1
1 changed files with 11 additions and 3 deletions

View File

@ -13,9 +13,6 @@ import java.math.BigDecimal;
/** /**
* 奖金4N配置 * 奖金4N配置
*
* @author hzs
* @since 2022-10-31
*/ */
@Data @Data
@EqualsAndHashCode(callSuper = true) @EqualsAndHashCode(callSuper = true)
@ -41,5 +38,16 @@ public class BdBonusExpand extends BaseEntity {
@TableField("EXPAND_RATIO") @TableField("EXPAND_RATIO")
private BigDecimal expandRatio; private BigDecimal expandRatio;
/**
* 对碰小值
*/
@TableField("EXPAND_SMALL")
private BigDecimal expandSmall;
/**
* 对碰大值
*/
@TableField("EXPAND_BIG")
private BigDecimal expandBig;
} }