zj
2024-06-03 a15e4f9fa2c34c4f4bd69f924c77e72a4c80e5ec
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
package com.nq.vo.agent;
 
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
@Data
public class AgentInsertParamVo {
    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 Integer roleId;
 
    private Integer adminId;
 
}