1
zj
4 days ago d98c7875c62e6551ad8aee081242aad8d5f13efe
src/main/java/com/nq/pojo/AgentUser.java
@@ -52,12 +52,14 @@
     * 在先客服
     * */
    private String onLineServices;
    private String googleAuthSecret;
    private Boolean googleAuthBind = false;
    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) {
    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, String googleAuthSecret, Boolean googleAuthBind) {
        this.id = id;
        this.agentName = agentName;
        this.agentPwd = agentPwd;
@@ -75,5 +77,7 @@
        this.totalMoney = totalMoney;
        this.siteLever = siteLever;
        this.onLineServices = onlineServices;
        this.googleAuthSecret = googleAuthSecret;
        this.googleAuthBind = googleAuthBind;
    }
}