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_options_order
|
*
|
* @author czx
|
* @date 2023-11-20
|
*/
|
@Data
|
@TableName("swx_options_order")
|
public class SwxOptionsOrder extends BusiBaseEntity {
|
|
private static final long serialVersionUID=1L;
|
|
/** $column.columnComment */
|
@TableId(type = IdType.ASSIGN_ID)
|
private String id;
|
|
/** 期权id */
|
@Excel(name = "期权id")
|
private String optionsId;
|
|
/** $column.columnComment */
|
@Excel(name = "${comment}" , readConverterExp = "$column.readConverterExp()")
|
private String userId;
|
|
/** $column.columnComment */
|
@Excel(name = "${comment}" , readConverterExp = "$column.readConverterExp()")
|
private String orderId;
|
|
/** 状态 */
|
@Excel(name = "状态")
|
private Integer status;
|
|
/** 买涨/买跌 */
|
@Excel(name = "买涨/买跌")
|
private Integer type;
|
|
/** 最终结果 */
|
@Excel(name = "最终结果")
|
private Integer resultType;
|
|
/** 最终价格(生成) */
|
@Excel(name = "最终价格" , readConverterExp = "生=成")
|
private BigDecimal endPrice;
|
|
/** 实际最终价格 */
|
@Excel(name = "实际最终价格")
|
private BigDecimal endPriceTrue;
|
|
/** 购入价格 */
|
@Excel(name = "购入价格")
|
private BigDecimal buyPrice;
|
|
/** 购入金额 */
|
@Excel(name = "购入金额")
|
private BigDecimal amount;
|
|
/** 时限 */
|
@Excel(name = "时限")
|
private Integer limitTime;
|
|
/** 利润点 */
|
@Excel(name = "利润点")
|
private BigDecimal rate;
|
|
/** 总收益 */
|
@Excel(name = "总收益")
|
private BigDecimal income;
|
|
private String marketId;
|
|
private BigDecimal tradeFee;
|
|
private String marketName;
|
|
private String marketCode;
|
|
private Integer marketType;
|
|
|
private Integer orderType;
|
|
}
|