|
@@ -0,0 +1,42 @@
|
|
|
+package com.pig4cloud.pig.marketing.api.vo.mongo;
|
|
|
+
|
|
|
+
|
|
|
+import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.io.Serial;
|
|
|
+import java.io.Serializable;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author: lwh
|
|
|
+ * @date: 2025-08-29
|
|
|
+ * @description: 分页查询设备信息出参
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@Schema(description = "分页查询设备信息出参")
|
|
|
+public class PageDeviceInfoVO implements Serializable {
|
|
|
+
|
|
|
+ @Serial
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ @Schema(description = "设备ID")
|
|
|
+ private String id;
|
|
|
+
|
|
|
+ @Schema(description = "客户端ID")
|
|
|
+ private String clientID;
|
|
|
+
|
|
|
+ @Schema(description = "设备信息")
|
|
|
+ private String deviceInfo;
|
|
|
+
|
|
|
+ @Schema(description = "头信息")
|
|
|
+ private String headInfo;
|
|
|
+
|
|
|
+ @Schema(description = "创建时间")
|
|
|
+ private String createTime;
|
|
|
+
|
|
|
+ @Schema(description = "更新时间")
|
|
|
+ private String updateTime;
|
|
|
+
|
|
|
+ @Schema(description = "数据总数")
|
|
|
+ private Long total;
|
|
|
+}
|