package com.ycl.dto.video; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Data; @Data public class ObjectRect { @JsonProperty("H") public Integer h; @JsonProperty("W") public Integer w; @JsonProperty("X") public Integer x; @JsonProperty("Y") public Integer y; }