xiaoyong931011
2020-05-25 6f44fa20505ec0b1c95b460043f25b9050511aa0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
package com.xcong.excoin.modules.coin.entity;
 
import java.math.BigDecimal;
import java.util.Date;
 
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 int orderType;
    /**
     * 币种
     */
    private String symbol;
    /**
     * 市场价
     */
    private BigDecimal markPrice;
    /**
     * 委托量
     */
    private BigDecimal entrustCnt;
    /**
     * 委托价
     */
    private BigDecimal entrustPrice;
    /**
     * 成交量
     */
    private BigDecimal dealCnt;
    /**
     * 成交价
     */
    private Double dealPrice;
    /**
     * 成交金额
     */
    private BigDecimal dealAmount;
    /**
     * 状态 1:委托中2:撤单3:已成交
     */
    private Integer orderStatus;
    /**
     * 交易类型 1:市价2:限价
     */
    private Integer tradeType;
    /**
     * 手续费
     */
    private String feeAmount;
    
}