es导入接口新增

This commit is contained in:
liyj 2025-07-19 14:22:09 +08:00
parent 9d76e73a49
commit b57d1dd0b4

View File

@ -46,6 +46,9 @@
WHERE product_id = lp.id
) AS merged_image_url
FROM library_product lp
<if test="updateTime!=null">
where lp.updated_at>=#{updateTime}
</if>
limit #{start},#{row}
</select>
@ -66,6 +69,10 @@
WHERE product_id = lp.id
) AS merged_image_url
FROM library_product lp
<if test="updateTime!=null">
where lp.updated_at>=#{updateTime}
</if>
)temp
</select>
</mapper>