|
@@ -1,5 +1,6 @@
|
|
package com.hfln.portal.common.dto.data.room;
|
|
package com.hfln.portal.common.dto.data.room;
|
|
|
|
|
|
|
|
+import io.swagger.v3.oas.annotations.media.Schema;
|
|
import lombok.Data;
|
|
import lombok.Data;
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
import java.math.BigDecimal;
|
|
@@ -7,26 +8,38 @@ import java.math.BigDecimal;
|
|
@Data
|
|
@Data
|
|
public class RegionInfo {
|
|
public class RegionInfo {
|
|
|
|
|
|
|
|
+
|
|
|
|
+ @Schema(description = "名称")
|
|
private String name;
|
|
private String name;
|
|
|
|
|
|
|
|
+ @Schema(description = "类型")
|
|
private String type;
|
|
private String type;
|
|
|
|
|
|
|
|
+ @Schema(description = "宽度")
|
|
private BigDecimal width;
|
|
private BigDecimal width;
|
|
|
|
|
|
|
|
+ @Schema(description = "高度")
|
|
private BigDecimal height;
|
|
private BigDecimal height;
|
|
|
|
|
|
|
|
+ @Schema(description = "距离顶点相对距离")
|
|
private BigDecimal top;
|
|
private BigDecimal top;
|
|
|
|
|
|
|
|
+ @Schema(description = "距离左侧边相对距离")
|
|
private BigDecimal left;
|
|
private BigDecimal left;
|
|
|
|
|
|
|
|
+ @Schema(description = "旋转角度: 0-不旋转,1-旋转90°,2-旋转180°,3-旋转270°")
|
|
private Boolean rotate;
|
|
private Boolean rotate;
|
|
|
|
|
|
|
|
+ @Schema(description = "距离雷达的X距离")
|
|
private BigDecimal yuanX;
|
|
private BigDecimal yuanX;
|
|
|
|
|
|
|
|
+ @Schema(description = "距离雷达的Y距离")
|
|
private BigDecimal yuanY;
|
|
private BigDecimal yuanY;
|
|
|
|
|
|
|
|
+ @Schema(description = "长度")
|
|
private String widthToM;
|
|
private String widthToM;
|
|
|
|
|
|
|
|
+ @Schema(description = "宽度")
|
|
private String heightToM;
|
|
private String heightToM;
|
|
|
|
|
|
private BigDecimal x;
|
|
private BigDecimal x;
|