|
@ -10,6 +10,7 @@ public class UserBo { |
|
|
public String nickname; |
|
|
public String nickname; |
|
|
public String avatar; |
|
|
public String avatar; |
|
|
public Integer money;//分,已提现金额
|
|
|
public Integer money;//分,已提现金额
|
|
|
|
|
|
public Integer realMoney;//分,已到账金额
|
|
|
public String aliPayAccount; |
|
|
public String aliPayAccount; |
|
|
public Long income;//ecpm和,分
|
|
|
public Long income;//ecpm和,分
|
|
|
public Long goldCoin;//金币
|
|
|
public Long goldCoin;//金币
|
|
@ -33,6 +34,7 @@ public class UserBo { |
|
|
this.nickname = u.getNickname(); |
|
|
this.nickname = u.getNickname(); |
|
|
this.avatar = u.getAvatar(); |
|
|
this.avatar = u.getAvatar(); |
|
|
this.money = u.getMoney(); |
|
|
this.money = u.getMoney(); |
|
|
|
|
|
this.realMoney = u.getRealMoney(); |
|
|
this.goldCoin = u.getIncome() - (u.getMoney() * 1000); |
|
|
this.goldCoin = u.getIncome() - (u.getMoney() * 1000); |
|
|
this.wxOpenId = u.getWxOpenId(); |
|
|
this.wxOpenId = u.getWxOpenId(); |
|
|
this.createdAt = u.getCreatedAt().getTime(); |
|
|
this.createdAt = u.getCreatedAt().getTime(); |
|
|