From 268869c6a1ad052e358ee119ff892057a52725c0 Mon Sep 17 00:00:00 2001 From: wendy512 <wendy512@yeah.net> Date: 星期四, 29 二月 2024 21:10:56 +0800 Subject: [PATCH] bugfix:修复紫光华智录像查询返回StartTime、EndTime为2024-02-21T11:10:36+08:00,兼容多种不同日期格式 --- src/main/java/com/genersoft/iot/vmp/gb28181/bean/PlatformCatalog.java | 14 ++++++++++++++ 1 files changed, 14 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/genersoft/iot/vmp/gb28181/bean/PlatformCatalog.java b/src/main/java/com/genersoft/iot/vmp/gb28181/bean/PlatformCatalog.java old mode 100644 new mode 100755 index 58a9cbb..38ba2f0 --- a/src/main/java/com/genersoft/iot/vmp/gb28181/bean/PlatformCatalog.java +++ b/src/main/java/com/genersoft/iot/vmp/gb28181/bean/PlatformCatalog.java @@ -1,27 +1,41 @@ package com.genersoft.iot.vmp.gb28181.bean; +import io.swagger.v3.oas.annotations.media.Schema; + /** * 鍥芥爣绾ц仈-鐩綍 * @author lin */ +@Schema(description = "鐩綍淇℃伅") public class PlatformCatalog { + @Schema(description = "ID") private String id; + + @Schema(description = "鍚嶇О") private String name; + + @Schema(description = "骞冲彴ID") private String platformId; + + @Schema(description = "鐖剁骇鐩綍ID") private String parentId; + @Schema(description = "琛屾斂鍖哄垝") private String civilCode; + @Schema(description = "鐩綍鍒嗙粍") private String businessGroupId; /** * 瀛愯妭鐐规暟 */ + @Schema(description = "瀛愯妭鐐规暟") private int childrenCount; /** * 0 鐩綍, 1 鍥芥爣閫氶亾, 2 鐩存挱娴� */ + @Schema(description = "绫诲瀷锛�0 鐩綍, 1 鍥芥爣閫氶亾, 2 鐩存挱娴�") private int type; public String getId() { -- Gitblit v1.8.0