xiaoyong931011
2021-04-23 d4488a987cccd3ddd51a202a9f8aa71d3cdcbced
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
package com.xcong.excoin.modules.agent.pojo;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
 
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * @author wzy
 * @date 2020-06-11
 **/
@Data
public class AgentUser {
 
    /**
     * 后台用户主键ID
     */
    private Long id;
 
    /**
     * 代理姓名
     */
    @NotBlank(message = "代理姓名不能为空")
    private String name;
 
    /**
     * 代理账号
     */
    @NotBlank(message = "代理账号不能为空")
    private String account;
 
    /**
     * 邀请码
     */
    @NotBlank(message = "邀请码不能为空")
    private String inviteId;
 
    /**
     * 手机号
     */
    private String telphone;
 
    /**
     * 邮箱
     */
    private String email;
 
    /**
     * 上级邀请码
     */
    private String refererId;
 
    /**
     * 发展代理数
     */
    private Integer childCnt;
 
    /**
     * 充值总数
     */
    private BigDecimal chargeTotal;
 
    /**
     * 提现总数
     */
    private BigDecimal cashOutTotal;
 
    /**
     * 佣金返现
     */
    private BigDecimal returnTotal;
 
    /**
     * 返佣比例
     */
    @NotNull(message = "返佣比例不能为空")
    private BigDecimal returnRatio;
 
    /**
     * 状态
     */
    private Integer status;
 
    /**
     * 创建时间
     */
    private Date createTime;
 
    /**
     * 实名状态
     */
    //@TableField(exist = false)
    private Integer certifyStatus;
 
    private Integer accountType;
 
    private Integer accountStatus;
 
    private String startTime;
    private Date startDate;
 
    private String endTime;
    private Date endDate;
 
}