Skip to content

Commit f90cef8

Browse files
committed
JSON注释新增类型
1 parent a84604a commit f90cef8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apijson/CodeUtil.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -991,7 +991,7 @@ var CodeUtil = {
991991
var p = (at.length <= 0 ? '' : at + ' < ')
992992
+ (fun.length <= 0 ? '' : fun + ' < ')
993993
+ (logic.length <= 0 ? '' : logic + ' < ');
994-
return (p.length <= 0 ? '' : p + key + ': ') + column.COLUMN_COMMENT;
994+
return (p.length <= 0 ? '' : p + key + ': ') + CodeUtil.getJavaType(column.COLUMN_TYPE, true) + ', ' + column.COLUMN_COMMENT;
995995
}
996996

997997
break;

0 commit comments

Comments
 (0)