xiaoyong931011
2021-06-17 4c902d9c20dd965d1ec832760809c622d1df9aac
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
package com.xcong.excoin.modules.trademanage.entity;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.xcong.excoin.common.entity.BaseEntity;
import lombok.Data;
 
import java.math.BigDecimal;
 
//gbz订单表
@Data
@TableName("gbz_order")
public class GbzOrderEntity extends BaseEntity {
 
    /**
     *
     */
    private static final long serialVersionUID = 1L;
 
    //会员ID
    private Long memberId;
 
    //金额
    private BigDecimal amount;
 
    //数量
    private Integer cnt;
 
    //币种
    private String symbol;
 
    //单价
    private BigDecimal price;
 
    //状态
    private Integer status;
 
    /**
     * 手机号(包含国际手机号)
     */
    @TableField(exist = false)
    private String phone;
    /**
     * 邮箱
     */
    @TableField(exist = false)
    private String email;
    @TableField(exist = false)
    private String account;
    /**
     * 邀请码
     */
    @TableField(exist = false)
    private String inviteId;
    /**
     * 姓名
     */
    @TableField(exist = false)
    private String realName;
 
 
}