|
@@ -21,14 +21,14 @@ public class DeviceBandingParams extends BaseVO {
|
|
|
@Schema(description = "用户Id", required = true)
|
|
|
private Long userId;
|
|
|
|
|
|
- @Schema(description = "设备名称,最多10个字符")
|
|
|
+ @Schema(description = "设备名称:最多10个字符")
|
|
|
@Size(max = 10, message = "设备名称不能超过10个字符")
|
|
|
private String devName;
|
|
|
|
|
|
- @Schema(description = "监测X长度:xxEnd-xxStart")
|
|
|
+ @Schema(description = "监测X长度: xxEnd-xxStart")
|
|
|
private BigDecimal length;
|
|
|
|
|
|
- @Schema(description = "监测Y宽度yyEnd-yyStart")
|
|
|
+ @Schema(description = "监测Y宽度:yyEnd-yyStart")
|
|
|
private BigDecimal width;
|
|
|
|
|
|
@Schema(description = "安装高度")
|
|
@@ -73,10 +73,12 @@ public class DeviceBandingParams extends BaseVO {
|
|
|
private BigDecimal yyEnd;
|
|
|
|
|
|
|
|
|
- @Schema(description = "雷达监测范围z开始,范围 0-5 cm之内")
|
|
|
+ @Schema(description = "雷达监测范围z开始,范围:0-5 cm之内")
|
|
|
@DecimalMin(value = "0", message = "zzStart不能小于0")
|
|
|
@DecimalMax(value = "5", message = "zzStart不能大于5")
|
|
|
private BigDecimal zzStart;
|
|
|
+
|
|
|
+
|
|
|
@Schema(description = "雷达监测范围z结束,范围:200-300 cm之内")
|
|
|
@DecimalMin(value = "0", message = "zzEnd不能小于0")
|
|
|
@DecimalMax(value = "5", message = "zzEnd不能大于5")
|