Skip to content

Commit

Permalink
fixed : freemarker template error
Browse files Browse the repository at this point in the history
The following has evaluated to null or missing
  • Loading branch information
itas109 committed Aug 22, 2019
1 parent ab19362 commit fd9bbcf
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main/resources/database.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ <h2>表汇总</h2>
<#list tables as item>
<tr style="background-color: #e8edff;">
<td>${item.table}</td>
<td>${item.comment}</td>
<td>${item.comment?default('')}</td>
</tr>
</#list>
</tbody>
</table>
<h2>表明细</h2>
<#list tables as item>
<br>
<h3>${item.comment}(${item.table})</h3>
<h3>${item.comment?default('')}(${item.table})</h3>
<table width="100%">
<thead style="background-color: #b9c9fe;font-weight: bold;">
<tr>
Expand All @@ -48,9 +48,9 @@ <h3>${item.comment}(${item.table})</h3>
<tr style="background-color: #e8edff;">
<td>${column.name}</td>
<td>${column.type}</td>
<td>${column.key}</td>
<td>${column.isNullable}</td>
<td>${column.comment}</td>
<td>${column.key?default('')}</td>
<td>${column.isNullable?default('')}</td>
<td>${column.comment?default('')}</td>
</tr>
</#list>
</tbody>
Expand Down

0 comments on commit fd9bbcf

Please sign in to comment.