数据库部门数据生成xml树
作者:网络转载 发布时间:[ 2015/12/10 10:38:39 ] 推荐标签:数据库
部门bean主要代码
private String deptname;//部门名称
private String deptcode;//部门编码
private String fdeptcode;//上级部门编码
private String isleaf;//是否为叶子部门
private List<Dep> children;//子部门集合
private String id;//部门id
//设置如何获取子部门
public void setChildren(String fdeptcode) {
if(isleaf.equals("1")){
}else{
List<Dep> listDep=new ArrayList<Dep>();
DbConn db=new DbConn();
ResultSet rst=null;
String sql1="select deptcode from comdept where fdeptcode='"+fdeptcode+"'";
try {
rst=db.executeQuery(sql1);
while(rst.next()){
String depcode=rst.getString("deptcode");
//调用构造方法如果dep还有子部门也会放到dep下
Dep dep=new Dep(depcode);
listDep.add(dep);
}
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
this.children = listDep;
}
}
//构造方法
public Dep(String deptcode){
this.deptcode=deptcode;
setAll(deptcode);
setChildren(deptcode);
}
相关推荐
更新发布
功能测试和接口测试的区别
2023/3/23 14:23:39如何写好测试用例文档
2023/3/22 16:17:39常用的选择回归测试的方式有哪些?
2022/6/14 16:14:27测试流程中需要重点把关几个过程?
2021/10/18 15:37:44性能测试的七种方法
2021/9/17 15:19:29全链路压测优化思路
2021/9/14 15:42:25性能测试流程浅谈
2021/5/28 17:25:47常见的APP性能测试指标
2021/5/8 17:01:11