Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ private ProbeJobInstanceResult extract(ProbeJobInstance instance) {
}
}


if (StringUtils.isNotEmpty(instance.getNullResult())){
JSONObject nullResultObj = JSONObject.parseObject(instance.getNullResult());
List<ProbeJobInstanceResult.NullResult> nullResultList = new ArrayList<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,11 @@

<tr data-index="0" th:each="nullResult:${Instance.nullResultList}">
<td th:text="${nullResult.nullField}"></td>
<td th:text="${nullResult.nullCnt}"></td>
<!-- 空值详情展示错误问题-->
<td th:text="${nullResult.nullCnt!=null ? nullResult.nullCnt :0 }"></td>
<td th:text="${nullResult.totalCnt}"></td>
<td th:text="${nullResult.nullCnt}/${nullResult.totalCnt}"></td>
<!-- 空值详情展示错误问题-->
<td th:text="${nullResult.nullCnt!=null ? nullResult.nullCnt :0 }/${nullResult.totalCnt}"></td>
</tr>


Expand Down