@@ -31,16 +31,16 @@
<thead>
<tr>
<th></th>
- <th>登录名</th>
<th>姓名</th>
+ <th>登录名</th>
</tr>
</thead>
<tbody>
<c:forEach items="${query.result}" var="user">
<td><input name="userIds" type="checkbox" value="${user.id }"/></td>
- <td>${user.loginName}</td>
<td>${user.name}</td>
+ <td>${user.loginName}</td>
</c:forEach>
</tbody>