1
zj
2025-07-10 37670b2ff5379e8603d3b0eec6d493daf2d6cfcb
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
package com.nq.pojo;
 
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
import java.util.List;
 
/**
 * @program: dabao
 * @description:
 * @create: 2024-05-21 11:00
 **/
@Data
public class AgentUserNodeVO {
 
    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;
 
    /**
     * 子节点
     */
    private List<AgentUserNodeVO> childList;
 
}