| | |
| | | import java.io.Serializable;
|
| | | import java.math.BigDecimal;
|
| | |
|
| | | import com.google.gson.annotations.Expose;
|
| | | import com.yeshi.fanli.entity.bus.user.vip.UserVIPInfo;
|
| | |
|
| | | public class UserVipRateVO implements Serializable {
|
| | |
| | | private static final long serialVersionUID = 1L;
|
| | |
|
| | | // 用户信息
|
| | | @Expose
|
| | | private Long id;
|
| | | @Expose
|
| | | private String nickName;
|
| | | @Expose
|
| | | private String portrait;
|
| | |
|
| | | @Expose
|
| | | private String successTime;
|
| | | @Expose
|
| | | private BigDecimal earnMoney;
|
| | | @Expose
|
| | | private BigDecimal conserveMoney;
|
| | | @Expose
|
| | | private String helpLink;
|
| | | @Expose
|
| | | private String csdLink;
|
| | | @Expose
|
| | | private String inviteCode;
|
| | | |
| | | @Expose
|
| | | private long finishTeam;
|
| | | @Expose
|
| | | private long finishHongBao;
|
| | | @Expose
|
| | | private BigDecimal finishGoldCoin;
|
| | | @Expose
|
| | | private BigDecimal finishMoney;
|
| | |
|
| | | @Expose
|
| | | private BigDecimal limitMoney;
|
| | | @Expose
|
| | | private BigDecimal limitgoldCoin;
|
| | | @Expose
|
| | | private long limitTeam;
|
| | | @Expose
|
| | | private long limitHongBao;
|
| | | |
| | | @Expose
|
| | | private UserVIPInfo vipInfo;//vip信息
|
| | | |
| | | @Expose
|
| | | private String leftTime;//剩余审核时间
|
| | |
|
| | |
|