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; }