Commit 5ded2569 authored by RuoYi's avatar RuoYi

修复代码生成如果选择字典类型缺失逗号问题

parent 48509d64
...@@ -227,8 +227,7 @@ export default { ...@@ -227,8 +227,7 @@ export default {
#end #end
#if(${column.dictType} != '') #if(${column.dictType} != '')
// $comment字典 // $comment字典
${column.javaField}Options: []#if($velocityCount != $columns.size()),#end ${column.javaField}Options: [],
#end #end
#end #end
// 查询参数 // 查询参数
......
...@@ -258,8 +258,7 @@ export default { ...@@ -258,8 +258,7 @@ export default {
#end #end
#if(${column.dictType} != '') #if(${column.dictType} != '')
// $comment字典 // $comment字典
${column.javaField}Options: []#if($velocityCount != $columns.size()),#end ${column.javaField}Options: [],
#end #end
#end #end
// 查询参数 // 查询参数
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment