Ver Fonte

机构查询字段返回 机构树相关字段

zhulu há 2 anos atrás
pai
commit
06eaf69ccd

+ 5 - 1
soc-modules/soc-modules-system/src/main/resources/mapper/system/SysOrgMapper.xml

@@ -28,6 +28,8 @@
         <result property="source" column="source"/>
         <result property="createBy" column="create_by"/>
         <result property="updateBy" column="update_by"/>
+        <result property="treeShowParentId" column="tree_show_parent_id"/>
+        <result property="treeShowPath" column="tree_show_path"/>
     </resultMap>
 
     <sql id="selectSysOrgVo">
@@ -54,7 +56,9 @@
                source,
                short_name,
                remark,
-               path
+               path,
+               tree_show_parent_id,
+               tree_show_path
         from sys_org
     </sql>