1
zj
2024-08-27 c7645690355961bf3959e455fa91747220336e4d
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
package com.nq.pojo;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
 
@Data
public class AgentUser {
    @TableId(value = "id",type = IdType.AUTO)
    private Integer id;
    private String agentName;
    private String agentPwd;
    private String agentRealName;
    private String agentPhone;
    private String agentCode;
    private Date addTime;
    private Integer isLock;
    private Integer parentId;
    private String parentName;
    //代理级别
    private Integer agentLevel;
    /**
     * 手续费比例
     */
    private BigDecimal poundageScale;
 
    /**
     * 递延费比例
     */
    private BigDecimal deferredFeesScale;
 
    /**
     * 分红比例
     */
    private BigDecimal receiveDividendsScale;
 
    /**
     * 总资金
     */
    private BigDecimal totalMoney;
 
    /**
     * 杠杆倍数,多个用/分割
     */
    private String siteLever;
 
    /**
     * 在先客服
     * */
    private String onLineServices;
 
    public AgentUser() {
 
    }
 
    public AgentUser(Integer id, String agentName, String agentPwd, String agentRealName, String agentPhone, String agentCode, Date addTime, Integer isLock, Integer parentId, String parentName, Integer agentLevel, BigDecimal poundageScale, BigDecimal deferredFeesScale, BigDecimal receiveDividendsScale, BigDecimal totalMoney, String siteLever, String onlineServices) {
        this.id = id;
        this.agentName = agentName;
        this.agentPwd = agentPwd;
        this.agentRealName = agentRealName;
        this.agentPhone = agentPhone;
        this.agentCode = agentCode;
        this.addTime = addTime;
        this.isLock = isLock;
        this.parentId = parentId;
        this.parentName = parentName;
        this.agentLevel = agentLevel;
        this.poundageScale = poundageScale;
        this.deferredFeesScale = deferredFeesScale;
        this.receiveDividendsScale = receiveDividendsScale;
        this.totalMoney = totalMoney;
        this.siteLever = siteLever;
        this.onLineServices = onlineServices;
    }
}