List<List<TScheduAppContent>> scheAppContentLists = new ArrayList<List<TScheduAppContent>>(); List<TScheduAppContent> scheAppContentList = commonService.list(scheParam,TScheduAppContent.class); scheAppContentLists.add(scheAppContentList); return scheAppContentLists;
<c:forEach var="item" items="${scheAppContentLists}" begin="0" step="1" >
<div class="tab-pane active" >
<c:forEach var="appContent" items="${item}" >
<table class="table-form">
<tbody>
<tr>
<th class="tc">环节名</th>
</tr>
<tr>
<td class="tc">${appContent.handleName}</td>
</tr>
</tbody>
</table>
</c:forEach>
</div>
</c:forEach>