<#assign map=checkRecord.getCheckRecordLogMap()/>
<#if map?? && (map?size>0)>
<table class="table table-bordered mb60">
<tr>
<td>检测项</td>
<td>前置条件</td>
<td>修改内容</td>
<td>字段名</td>
<td>修改人</td>
<td>时间</td>
</tr>
<#list map?keys as key>
<#list map[key] as checkRecordLog>
<tr>
<td>${checkRecordLog.checkItem}</td>
<td>${checkRecordLog.preCondition}</td>
<td>${checkRecordLog.editContent}</td>
<td>${checkRecordLog.name}</td>
<td>${checkRecordLog.sysUser.realName}</td>
<td>${checkRecordLog.createTime?string("yyyy-mm-dd hh:MM:ss")}</td>
</tr>
</#list>
</#list>
</table>
</#if>