xiaoyong931011
2023-08-11 75cd0d8aff31f28596a5b52c2686bc2afee46589
src/main/java/cc/mrbird/febs/dapp/vo/TeamListVo.java
@@ -17,19 +17,16 @@
@ApiModel(value = "TeamLIstVo", description = "团队列表接口返回参数类")
public class TeamListVo {
    @ApiModelProperty(value = "地址")
    private String address;
    @ApiModelProperty(value = "我的业绩")
    private BigDecimal myAchieve;
    @ApiModelProperty(value = "等级")
    private String accountType;
    @ApiModelProperty(value = "我的团队业绩")
    private BigDecimal myTeamAchieve;
    @ApiModelProperty(value = "是否加入动能")
    private Integer activeStatus;
    @ApiModelProperty(value = "团队数量")
    private int myTeamCnt;
    @ApiModelProperty(value = "直推人数")
    private int directCnt;
    @ApiModelProperty(value = "子节点")
    private List<TeamListVo> children = new ArrayList<>();
    @ApiModelProperty(value = "团队列表")
    private List<TeamChildListVo> team;
}