package com.xcong.excoin.modules.coin.entity; import java.math.BigDecimal; import com.baomidou.mybatisplus.annotation.TableName; import com.xcong.excoin.common.system.base.BaseEntity; import lombok.Data; /** * 币币订单表 */ @Data @TableName("coins_order") public class OrderCoinsEntity extends BaseEntity{ /** * */ private static final long serialVersionUID = 1L; /** * 会员ID */ private Long memberId; /** * 订单编号 */ private String orderNo; /** * 订单类型 1、买入2、卖出 */ private Integer orderType; public static final Integer ORDERTYPE_BUY = 1; public static final Integer ORDERTYPE_SELL = 2; /** * 币种 */ private String symbol; /** * 市场价 */ private BigDecimal markPrice; /** * 委托量 */ private BigDecimal entrustCnt; /** * 委托价 */ private BigDecimal entrustPrice; /** * 成交量 */ private BigDecimal dealCnt; /** * 成交价 */ private BigDecimal dealPrice; /** * 成交金额 */ private BigDecimal dealAmount; /** * 状态 1:委托中2:撤单3:已成交 */ private Integer orderStatus; public static final Integer ORDERSTATUS_DODING = 1; public static final Integer ORDERSTATUS_CANCEL = 2; public static final Integer ORDERSTATUS_DONE = 3; /** * 交易类型 1:市价2:限价 */ private Integer tradeType; public static final Integer TRADETYPE_MARKETPRICE = 1; public static final Integer TRADETYPE_FIXEDPRICE = 2; /** * 手续费 */ private BigDecimal feeAmount; }