|
@@ -0,0 +1,18 @@
|
|
|
+package cn.iocoder.yudao.module.pms.controller.admin.iotmainworkorder.vo;
|
|
|
+
|
|
|
+import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+@Schema(description = "管理后台 - 超时保养设备 Request VO")
|
|
|
+@Data
|
|
|
+public class IotDeviceMainTimeoutVO {
|
|
|
+ @Schema(description = "公司级部门名称")
|
|
|
+ private String deptName;
|
|
|
+
|
|
|
+ @Schema(description = "公司级部门id")
|
|
|
+ private Long deptId;
|
|
|
+
|
|
|
+ @Schema(description = "公司下包含的所有超时保养的设备数量")
|
|
|
+ private Integer count;
|
|
|
+
|
|
|
+}
|