Commit b91a3ca6 by zhiwj

添加查询短信签名的接口

parent b1f0ac1b
...@@ -173,6 +173,7 @@ public class ResourceApiServiceImpl implements ResourceApiService { ...@@ -173,6 +173,7 @@ public class ResourceApiServiceImpl implements ResourceApiService {
} }
} }
result.setIdList(resultIds); result.setIdList(resultIds);
result.setType(2);
return EnterpriseServiceResponse.success(result); return EnterpriseServiceResponse.success(result);
} }
} }
...@@ -242,11 +242,13 @@ ...@@ -242,11 +242,13 @@
select select
<include refid="Base_Column_List" /> <include refid="Base_Column_List" />
from tab_sys_resource from tab_sys_resource
<where>
<if test="null != ids"> <if test="null != ids">
and resource_id in and resource_id in
<foreach close=")" collection="ids" index="index" item="item" open="(" separator=","> <foreach close=")" collection="ids" index="index" item="item" open="(" separator=",">
#{item} #{item}
</foreach> </foreach>
</if> </if>
</where>
</select> </select>
</mapper> </mapper>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment