package com.xcong.excoin.modules.otc.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.xcong.excoin.common.system.base.BaseEntity;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
@Data
|
@TableName("otc_entrust_order")
|
public class OtcEntrustOrder extends BaseEntity {
|
|
private Long memberId;
|
|
private Long mbId;
|
|
/**
|
* 单价
|
*/
|
private BigDecimal unitPrice;
|
|
/**
|
* 数量
|
*/
|
private BigDecimal coinAmount;
|
|
/**
|
* 剩余数量
|
*/
|
private BigDecimal remainCoinAmount;
|
|
/**
|
* 限额
|
*/
|
private BigDecimal limitMinAmount;
|
|
/**
|
* 限额
|
*/
|
private BigDecimal limitMaxAmount;
|
|
/**
|
* 委托单类型 B-买S-卖
|
*/
|
private String orderType;
|
|
/**
|
* 1-上线 2-下线
|
*/
|
private Integer status;
|
}
|