|
|
@@ -15,13 +15,18 @@ public class QhseDeviceCertSaveReqVO {
|
|
|
private Long id;
|
|
|
|
|
|
@Schema(description = "设备id", requiredMode = Schema.RequiredMode.REQUIRED, example = "9166")
|
|
|
- @NotNull(message = "设备id不能为空")
|
|
|
+// @NotNull(message = "设备id不能为空")
|
|
|
private Long deviceId;
|
|
|
|
|
|
+ @Schema(description = "设备编码")
|
|
|
+ @NotEmpty(message = "设备编码不能为空")
|
|
|
+ private String deviceCode;
|
|
|
+
|
|
|
@Schema(description = "部门id", example = "20873")
|
|
|
private Long deptId;
|
|
|
|
|
|
@Schema(description = "设备名称", example = "芋艿")
|
|
|
+ @NotEmpty(message = "设备名称不能为空")
|
|
|
private String deviceName;
|
|
|
|
|
|
@Schema(description = "证书编号", requiredMode = Schema.RequiredMode.REQUIRED)
|