package com.xcong.excoin.modules.coin.entity;
|
|
import java.io.Serializable;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
/**
|
* 杠杆设置表
|
*/
|
@Data
|
@TableName("platform_leverage_setting")
|
public class PlatformLeverageSettingEntity implements Serializable {
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
@TableId(value = "id",type = IdType.AUTO)
|
private Long id;
|
/**
|
* 杠杆值
|
*/
|
private String value;
|
/**
|
* 杠杆名称
|
*/
|
private String name;
|
/**
|
* 币种
|
*/
|
private String symbol;
|
/**
|
* 维持保证金率
|
*/
|
private String prePriceRate;
|
|
}
|