diff --git a/src/main/java/neatlogic/framework/dto/ChangelogAuditVo.java b/src/main/java/neatlogic/framework/dto/ChangelogAuditVo.java index 17be97189a61f04309af637f18981acd124e9d24..74b47a83c8f8d0adcb8c007138f9fdc35623e503 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; }