<?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>
|