package com.gear.swx.domain;
|
|
import java.math.BigDecimal;
|
import com.gear.common.annotation.Excel;
|
import lombok.Data;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.gear.common.core.domain.BusiBaseEntity;
|
|
/**
|
* 合约产品管理对象 swx_market_contracts
|
*
|
* @author czx
|
* @date 2023-11-20
|
*/
|
@Data
|
@TableName("swx_market_contracts")
|
public class SwxMarketContracts extends BusiBaseEntity {
|
|
private static final long serialVersionUID=1L;
|
|
/** $column.columnComment */
|
@TableId(type = IdType.ASSIGN_ID)
|
private String id;
|
|
/** 产品id */
|
@Excel(name = "产品id")
|
private String mId;
|
|
private Integer status;
|
|
/** 最大杠杆倍数 */
|
@Excel(name = "最大杠杆倍数")
|
private Integer maxLeverage;
|
|
/** 保证金(每手/每倍) */
|
@Excel(name = "保证金(每手/每倍)")
|
private BigDecimal margin;
|
|
/** 交易费(百分) */
|
@Excel(name = "交易费" , readConverterExp = "百=分")
|
private BigDecimal tradeFee;
|
|
/** 每手数量 */
|
@Excel(name = "每手数量")
|
private Integer handNum;
|
|
/** 可交易时间类型 */
|
@Excel(name = "可交易时间类型")
|
private Integer canTradeDateType;
|
|
/** 可交易时间 */
|
@Excel(name = "可交易时间")
|
private String canTradeDate;
|
|
/** 可交易时间 */
|
@Excel(name = "可交易时间")
|
private String canTradeTime;
|
|
/** 最大止损点 */
|
@Excel(name = "最大止损点")
|
private BigDecimal maxStopLoss;
|
|
/** 最大止盈点 */
|
@Excel(name = "最大止盈点")
|
private BigDecimal maxStopProfit;
|
|
/** 默认强制平仓点 */
|
@Excel(name = "默认强制平仓点")
|
private BigDecimal defaultStop;
|
|
}
|