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;
|
|
}
|