1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| package com.dsh.communityWorldCup.model;
|
| import io.swagger.annotations.ApiModel;
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| /**
| * @author zhibing.pu
| * @Date 2024/2/29 10:35
| */
| @Data
| @ApiModel
| public class WorldCupRankVo {
| @ApiModelProperty("排名")
| private Integer rank;
| @ApiModelProperty("姓名")
| private String name;
| @ApiModelProperty("头像")
| private String avatar;
| @ApiModelProperty("总场次")
| private Integer totalSession;
| @ApiModelProperty("胜率")
| private Double winRate;
| @ApiModelProperty("是否是自己(0=否,1=是)")
| private Integer oneself;
| }
|
|