mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
1
2
3
4
5
6
7
8
9
10
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.panzhihua.service_community.dao.ComActPictureLibraryDAO">
 
    <select id="getPresetPictureLibrary" resultType="java.lang.String">
        SELECT upload_picture FROM com_act_picture_library t1
        LEFT JOIN com_act_library_type t2 ON t1.library_type_id = t2.id
        WHERE t2.type = #{type} AND t2.subtype = #{subtype}
    </select>
</mapper>