baizonghao
2023-02-24 c4aa721a61edb5ff4502d621897c266b98ef3d1c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;
}