xiaoyong931011
2021-03-05 09de95ab5415f1511191f4e68c3bd74e4ab7f09d
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
package com.xcong.excoin.modules.documentary.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.xcong.excoin.common.system.base.BaseEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
/**
 * @author wzy
 * @date 2020-07-29
 **/
@EqualsAndHashCode(callSuper = true)
@Data
@TableName("follow_follower_order_relation")
public class FollowFollowerOrderRelationEntity extends BaseEntity {
 
    /**
     *  订单状态 1-持仓 2-历史
     */
    public static final Integer ORDER_TYPE_HOLD = 1;
    public static final Integer ORDER_TYPE_HISTORY = 2;
 
    /**
     * 是否显示 1-是 2-否
     */
    public static final Integer IS_SHOW_Y = 1;
    public static final Integer IS_SHOW_N = 2;
 
    /**
     * 会员ID
     */
    private Long memberId;
    /**
     * 交易员ID
     */
    private Long tradeId;
 
    /**
     * 跟单订单ID
     */
    private String tradeOrderNo;
 
    /**
     * 交易员用户ID
     */
    private Long tradeMemberId;
 
    /**
     * 订单ID
     */
    private Long orderId;
    /**
     * 订单类型 1-持仓 2-历史
     */
    private Integer orderType;
    /**
     * 订单是否显示 1-显示 2-不显示
     */
    private Integer isShow;
}