关于多表生成Treeview 的问题。

我现在想生成一个组织机构图,用Treeview 来显示。

涉及的表格 公司表(Corp),字段为 corpid,corpname,parentid.

部门实例表 (DeparmentIntance) 字段为 DeptInstantID,DeptID,corpid,ParentID

部门表(department)字段为DeptID,DeptName

岗位实例表 (PositionInstant)字段为PosInstID,DeptInstantID,PositionID

岗位表 (Org_Position)字段为PositionID,PositionName

原理:部门和岗位通过实例的形式实现,生成 组织机构如下:

XXX公司

    XXX中心

        XXX 部门

           xxx 岗位

BBBB公司

     BBB部门

        BBB 岗位

 

我已经晕菜了,不知道那位可以帮忙分析一下啊。


万千封印
浏览 443回答 2
2回答

慕少森

select copid as ID,copName as Name, 0 as ParentID from Companytable union select d.departmentId as ID,d.deparentmentName as Name, d.companyid as ParentID from departmenttable d  union select p.positionid as ID,p.positionname as Name,p.departmentid as ParentID from positiontable p上面只是表意的代码,你根据自己的表结构做一下调整
打开App,查看更多内容
随时随地看视频慕课网APP