Helius
2021-05-17 cdb62ef0e5e583983434092ec499e89bdad28cff
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
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;
}