From 1a677d2b4a4bc615602f8c2a22bc07ec1356e5be Mon Sep 17 00:00:00 2001
From: feiyu02 <risaku@163.com>
Date: 星期四, 16 十月 2025 17:39:06 +0800
Subject: [PATCH] 2025.10.16 1. 根据全局响应增强器GlobalResponseAdvice,将原先的BaseResPack接口包装函数统一去除; 2. 新增三种类型的数据产品数据库实体 3. 新增典型问题场景清单中间数据产品接口
---
src/main/kotlin/cn/flightfeather/supervision/domain/ds1/entity/Domainitem.kt | 13 +++++++++++++
1 files changed, 13 insertions(+), 0 deletions(-)
diff --git a/src/main/kotlin/cn/flightfeather/supervision/domain/ds1/entity/Domainitem.kt b/src/main/kotlin/cn/flightfeather/supervision/domain/ds1/entity/Domainitem.kt
index a2c0b31..dadb909 100644
--- a/src/main/kotlin/cn/flightfeather/supervision/domain/ds1/entity/Domainitem.kt
+++ b/src/main/kotlin/cn/flightfeather/supervision/domain/ds1/entity/Domainitem.kt
@@ -4,38 +4,51 @@
import javax.persistence.Column
import javax.persistence.Id
import javax.persistence.Table
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
@Table(name = "sm_t_domainitem")
@JsonInclude(JsonInclude.Include.NON_NULL)
+@ApiModel(value = "Domainitem")
public class Domainitem {
@Id
@Column(name = "DI_GUID")
+ @ApiModelProperty(value = "鍩熷�兼潯鐩甮uid")
var guid: String? = null
@Column(name = "DC_GUID")
+ @ApiModelProperty(value = "鍩熷�肩被鍨媑uid")
var dcguid: String? = null
@Column(name = "DI_CatelogName")
+ @ApiModelProperty(value = "鍩熷�肩被鍨嬪悕绉�")
var catelogname: String? = null
@Column(name = "DI_Value")
+ @ApiModelProperty(value = "鍩熷�肩殑鍊�")
var value: String? = null
@Column(name = "DI_Text")
+ @ApiModelProperty(value = "鍩熷�兼弿杩�")
var text: String? = null
@Column(name = "DI_Index")
+ @ApiModelProperty(value = "鍩熷�肩储寮�")
var index: Int? = null
@Column(name = "DI_ParentGUID")
+ @ApiModelProperty(value = "DI_ParentGUID")
var parentguid: String? = null
@Column(name = "DI_IsEnable")
+ @ApiModelProperty(value = "鏄惁鍙敤")
var isenable: Boolean? = null
@Column(name = "DI_Code")
+ @ApiModelProperty(value = "鍩熷�间唬鐮�")
var code: String? = null
@Column(name = "DI_Remark")
+ @ApiModelProperty(value = "澶囨敞")
var remark: String? = null
}
\ No newline at end of file
--
Gitblit v1.9.3