Merge remote-tracking branch 'origin/master'
This commit is contained in:
@@ -46,6 +46,21 @@
|
||||
<if test="updatedAt != null">and d.updated_at = #{updatedAt}</if>
|
||||
</where>
|
||||
</select>
|
||||
<select id="selectPcdeDetailListIds" parameterType="PcdeDetail" resultMap="PcdeDetailResult">
|
||||
<include refid="selectPcdeDetailVo"/>
|
||||
<where>
|
||||
<choose>
|
||||
<when test="ids != null and ids.size > 0">
|
||||
AND d.id IN
|
||||
<foreach collection="ids" item="val" open="(" separator="," close=")">
|
||||
#{val}
|
||||
</foreach>
|
||||
</when>
|
||||
|
||||
</choose>
|
||||
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<select id="selectPcdeDetailById" parameterType="Long" resultMap="PcdeDetailResult">
|
||||
<include refid="selectPcdeDetailVo"/>
|
||||
|
||||
Reference in New Issue
Block a user