Browse Source

投资效益系统-字典表添加系统类型

LHB 3 months ago
parent
commit
a8eb359e2e

+ 2 - 1
src/main/java/org/springblade/modules/system/mapper/DictBizMapper.xml

@@ -13,6 +13,7 @@
         <result column="sort" property="sort"/>
         <result column="remark" property="remark"/>
         <result column="is_deleted" property="isDeleted"/>
+        <result column="system_type" property="systemType"/>
     </resultMap>
 
     <resultMap id="treeNodeResultMap" type="org.springblade.core.tool.node.TreeNode">
@@ -45,7 +46,7 @@
         and is_sealed = 0
         and is_deleted = 0
         <if test="type != null">
-            and type = #{type}
+            and system_type = #{type}
         </if>
     </select>