package cc.mrbird.febs.dapp.soccer.entity; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; @Data public class Venue { @JsonProperty("id") private Integer id; @JsonProperty("name") private String name; @JsonProperty("address") private String address; @JsonProperty("city") private String city; @JsonProperty("capacity") private Integer capacity; @JsonProperty("surface") private String surface; @JsonProperty("image") private String image; }