如下所示:
@Override
public String getEmployeeBysup(String employeeID) {
String str="";
str = getEmployeeBysupSelas(employeeID, str);
return str.substring(0, str.lastIndexOf(","));
}
@Override
public String getEmployeeBysupSelas(String employeeID, String str) {
str+="'"+employeeID+"',";
System.out.println(str);
String sql="SELECt u.employeeID from tbl_system_user u where supervisorID='"+employeeID+"'";
List list= jdbcTemplate.queryForList(sql, String.class);
if(list!=null&&list.size()>0){
for(int i=0;i
以上就是小编为大家带来的Java无限级树(递归)超实用案例全部内容了,希望大家多多支持考高分网~



