package com.xcong.excoin.modules.platform.entity;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
@Data
|
@TableName("platform_fee_setting")
|
public class PlatformFeeSettingEntity implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
/**
|
* 主键ID
|
*/
|
private Long id;
|
/**
|
* 类型 1-充币2-提币3-充值USDT4-提现USDT
|
*/
|
private Integer type;
|
/**
|
* 最低价
|
*/
|
private BigDecimal minPrice;
|
/**
|
* 最高价
|
*/
|
private BigDecimal maxPrice;
|
/**
|
* 手续费价
|
*/
|
private BigDecimal feePrice;
|
/**
|
*
|
*/
|
private Date createTime;
|
/**
|
* 人民币价格
|
*/
|
private BigDecimal cnyPrice;
|
/**
|
* 币种
|
*/
|
private String symbol;
|
/**
|
* USDT链名
|
*/
|
private String lable;
|
|
}
|