| | |
| | | |
| | | //会员级别设置表 |
| | | @Data |
| | | @TableName("basic_level_setting") |
| | | @TableName("yd_basic_level_setting") |
| | | public class BasicLevelSettingEntity { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @TableId(value = "id",type = IdType.AUTO) |
| | | private Long id; |
| | | //等级名称 |
| | | |
| | | private String name; |
| | | //等级编码 |
| | | |
| | | private String code; |
| | | //XCH返佣比例 |
| | | |
| | | private BigDecimal xchRatio; |
| | | //USDT返佣比例 |
| | | |
| | | private BigDecimal usdtRatio; |
| | | //成为代理条件(充值USDT的数量) |
| | | |
| | | private BigDecimal chargeUsdt; |
| | | //成为代理条件(购买算力的数量) |
| | | |
| | | private BigDecimal calculationPower; |
| | | |
| | | private BigDecimal salePrice; |
| | | |
| | | private Integer level; |
| | | } |