|
@@ -81,6 +81,15 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
</foreach>
|
|
|
</select>
|
|
|
|
|
|
+ <select id="selectTUInterfaceDataListByIds" parameterType="String" resultMap="TUInterfaceinfoResult">
|
|
|
+ select menu_id id, menu_name interface_name
|
|
|
+ from sys_menu
|
|
|
+ where menu_id in
|
|
|
+ <foreach item="id" collection="array" open="(" separator="," close=")">
|
|
|
+ #{id}
|
|
|
+ </foreach>
|
|
|
+ </select>
|
|
|
+
|
|
|
<select id="selectTUInterfaceinfoById" parameterType="String" resultMap="TUInterfaceinfoResult">
|
|
|
<include refid="selectTUInterfaceinfoVo"/>
|
|
|
where id = #{id}
|