<c:forEach items="${list }" var="employee">
     <tr>
      <td height="25" align="center" width="120" class="b1_text_12_n">
      <input id="userCode" value="${employee.userCode}" type="hidden">
      <a href="../updateEmployee.action?userCode='${employee.userCode}'" >
      ${employee.userCode}
      </a>
      </td>
      <td height="25" align="center" width="120" class="b1_text_12_n">${employee.userName}</td>
      <td height="25" align="center" width="120" class="b1_text_12_n">${employee.status}</td>
       <td height="25" align="center" width="120" class="b1_text_12_n">${employee.sex}</td>
      <td height="25" align="center" width="120" class="b1_text_12_n">${employee.company.orgName}</td>
      <td height="25" align="center" width="120" class="b1_text_12_n">${employee.role.roleName}</td>
       <td height="25" align="center" width="120" class="b1_text_12_n">${employee.mobile}</td>
      <td height="25" align="center" width="120" class="b1_text_12_n">${employee.ocupation}</td>
     </tr>
   </c:forEach>