package cc.mrbird.febs.dapp.soccer.entity; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; @Data public class Team { @JsonProperty("id") private Integer id; @JsonProperty("name") private String name; @JsonProperty("code") private String code; @JsonProperty("country") private String country; @JsonProperty("founded") private Integer founded; @JsonProperty("national") private String national; @JsonProperty("logo") private String logo; }