From 5fcfdeb4739328a54c5e4d6db13ed1eac5e61756 Mon Sep 17 00:00:00 2001 From: "1437892690@qq.com" <1437892690@qq.com> Date: Fri, 27 Jun 2025 19:30:34 +0800 Subject: [PATCH] =?UTF-8?q?[=E5=8A=9F=E8=83=BD]=20=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E5=BA=93=E5=8F=98=E6=9B=B4=E8=AE=B0=E5=BD=95?= =?UTF-8?q?=E7=AE=A1=E7=90=86=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 关联 #[1440489562144768]增加数据库变更记录管理页面 http://192.168.0.96:8090/demo/rdm.html#/story-detail/939050947543040/939050947543042/1440489562144768 --- .../neatlogic/framework/dto/ChangelogAuditVo.java | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/main/java/neatlogic/framework/dto/ChangelogAuditVo.java b/src/main/java/neatlogic/framework/dto/ChangelogAuditVo.java index 17be97189..74b47a83c 100644 --- a/src/main/java/neatlogic/framework/dto/ChangelogAuditVo.java +++ b/src/main/java/neatlogic/framework/dto/ChangelogAuditVo.java @@ -1,9 +1,10 @@ package neatlogic.framework.dto; import neatlogic.framework.common.constvalue.ApiParamType; +import neatlogic.framework.common.dto.BaseEditorVo; import neatlogic.framework.restful.annotation.EntityField; -public class ChangelogAuditVo { +public class ChangelogAuditVo extends BaseEditorVo { @EntityField(name = "租户uuid", type = ApiParamType.STRING) private String tenantUuid; @@ -16,6 +17,9 @@ public class ChangelogAuditVo { @EntityField(name = "sql哈希", type = ApiParamType.STRING) private String sqlHash; + @EntityField(name = "sql", type = ApiParamType.STRING) + private String sql; + @EntityField(name = "sql执行状态", type = ApiParamType.INTEGER) private Integer sqlStatus; @@ -79,6 +83,14 @@ public class ChangelogAuditVo { this.sqlHash = sqlHash; } + public String getSql() { + return sql; + } + + public void setSql(String sql) { + this.sql = sql; + } + public Integer getSqlStatus() { return sqlStatus; } -- Gitee