package com.tejia.lijin.app.entity;
|
|
import java.util.List;
|
|
/**
|
* 队员-统计数量+上级
|
* <p>
|
* {code : 0
|
* data : {"boss":{"hasBoss":true,"inviteId":78,"nickName":"LLL","portrait":"http://ec-1255749512.file.myqcloud.com/img/user/546e0b63380b403c9d85657ca5675533.jpg",
|
* "weiXinState":1,"weiXinTip":"点击提醒TA,系统会发送一封站内信,提醒其添加微信号。",
|
* "inviteTime":"你于 2018.04.13接受了TA的邀请"},"helpLink":"http://apph5.yeshitv.com/apppage/all_help_content.html?id=149","firstTeam":8,
|
* "firstTeamTotal":19,"secondTeam":0,"secondTeamTotal":3,"hasTeam":true,"hasCode":true,
|
* "tipWeiXin":["添加微信号后,你的邀请人和一级队员可通过微信号与你建立联系;","你也可以向邀请人学习或向一级队员教授赚钱技巧。"],"bdWeiXin":false}}
|
*/
|
public class CountMyTeam {
|
public boolean hasCode;
|
public String helpLinkActivate;
|
public List<String> tipCode;
|
public boolean bdWeiXin;
|
public List<String> tipWeiXin;
|
public boolean hasTeam;
|
public int secondTeam;
|
public int secondTeamTotal;
|
public Bossbean boss;
|
public String helpLink;
|
public int firstTeam;
|
public int firstTeamTotal;
|
public String tipWeiXinAdd;
|
}
|