孙永军 il y a 1 an
Parent
commit
5888fba120

+ 18 - 0
src/main/java/com/sxtvs/open/api/review/dto/VideoReviewResp.java

@@ -91,6 +91,24 @@ public class VideoReviewResp {
             public static class EvidenceDTO {
                 @JSONField(name = "text")
                 private String text;
+
+                @JSONField(name = "thumbnail")
+                private String thumbnail;
+                @JSONField(name = "location")
+                private LocationDTO location;
+
+                @NoArgsConstructor
+                @Data
+                public static class LocationDTO {
+                    @JSONField(name = "leftOffsetInPixel")
+                    private Integer leftOffsetInPixel;
+                    @JSONField(name = "topOffsetInPixel")
+                    private Integer topOffsetInPixel;
+                    @JSONField(name = "widthInPixel")
+                    private Integer widthInPixel;
+                    @JSONField(name = "heightInPixel")
+                    private Integer heightInPixel;
+                }
             }
         }
     }