KKSU
2024-05-13 a957341941e24a3547a2232e4ae3aabcd457a1c5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package cc.mrbird.febs.dapp.soccer.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class LeaguesApiDto {
    /**
     * integer = 4 characters YYYY
     * The season of the league
     */
 
    @ApiModelProperty(value = "年份,YYYY", example = "2024")
    private Integer season;
    /**
     * string Return the list of active seasons or the las...Show pattern
     * Enum: "true" "false"
     * The state of the league
     */
    @ApiModelProperty(value = "联赛状态,Enum: \"true\" \"false\"", example = "true")
    private String current;
}