| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- package com.kym.entity;
- import com.baomidou.mybatisplus.annotation.TableName;
- import com.kym.entity.BaseEntity;
- import java.io.Serializable;
- import lombok.Getter;
- import lombok.Setter;
- /**
- * <p>
- * 站点平台费率表
- * </p>
- *
- * @author skyline
- * @since 2025-04-18
- */
- @Getter
- @Setter
- @TableName("t_station_fee_rate")
- public class StationFeeRate extends BaseEntity {
- private static final long serialVersionUID = 1L;
- /**
- * 站点id
- */
- private String stationId;
- /**
- * 平台费率表id
- */
- private Long feeRateId;
- /**
- * 平台费率(0.1代表10%)
- */
- private Double feeRate;
- /**
- * 充值冻结金额比例(0.3代表30%)
- */
- private Double frozenRatio;
- /**
- * 提现手续费率(0.006代表6‰)
- */
- private Double withdrawalFeeRate;
- /**
- * 状态:0-无效,1有效
- */
- private Boolean status;
- }
|