生成操作日志代码.

This commit is contained in:
lijiahang
2023-10-10 18:37:17 +08:00
parent 730fb000d1
commit 2028d1ee0f
36 changed files with 557 additions and 52 deletions

View File

@@ -197,4 +197,5 @@ orion:
queue-capacity: 30
keep-alive-seconds: 180
operator-log:
error-message-length: 255
error-message-length: 255
user-agent-length: 128

View File

@@ -15,14 +15,14 @@
<id column="${field.name}" property="${field.propertyName}"/>
#end
#end
#foreach($field in ${table.commonFields})##生成公共字段
<result column="${field.name}" property="${field.propertyName}"/>
#end
#foreach($field in ${table.fields})
#if(!${field.keyFlag})##生成普通字段
<result column="${field.name}" property="${field.propertyName}"/>
#end
#end
#foreach($field in ${table.commonFields})##生成公共字段
<result column="${field.name}" property="${field.propertyName}"/>
#end
</resultMap>
#end