| | |
| | | <result column="COPYFROMVERSION" property="copyFromVersion"/> |
| | | <result column="CLASSNAME" property="className"/> |
| | | <result column="NODELINK" property="nodeLink"/> |
| | | <result column="NODELINKNAME" property="getNodeLinkName"/> |
| | | <result column="NODELINKNAME" property="nodeLinkName"/> |
| | | <result column="PID" property="pid"/> |
| | | </resultMap> |
| | | <select id="selectCompanyGroupClassifyVOByTree" resultMap="plDockingClassifyResultMap"> |
| | |
| | | codeclassify0.NODELINKNAME as nodelinkname, |
| | | codeclassify0.PID as pid |
| | | from PL_CODE_JCLASSIFY codeclassify0 |
| | | start with |
| | | <!--<where>--> |
| | | <if test="oid != null and oid != ''"> |
| | | start with |
| | | <if test="oid != null"> |
| | | codeclassify0.pid = '${oid}' |
| | | connect by prior codeclassify0.oid =codeclassify0.pid |
| | | </if> |
| | | <!-- <if test="oid = null"> |
| | | <if test="oid == null "> |
| | | codeclassify0.pid is null |
| | | </if>--> |
| | | </if> |
| | | <!--</where>--> |
| | | |
| | | connect by prior codeclassify0.oid =codeclassify0.pid |
| | | order by id asc |
| | | </select> |
| | | |