下载二维码调试

This commit is contained in:
mashuai 2024-11-29 10:54:15 +08:00
parent d702a83126
commit 74563ff74d
1 changed files with 1 additions and 4 deletions

View File

@ -111,13 +111,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<update id="updateStatus">
UPDATE purchase_check_details
SET is_download = '1'
WHERE del_flag = '0'
WHERE id = #{purchaseId}
<if test="id != null and id != ''">
and task_id = #{id}
</if>
<if test="purchaseId != null and purchaseId != ''">
and id = #{purchaseId}
</if>
</update>
<select id="selectAll" resultType="com.bonus.material.purchase.domain.vo.PurchaseVo">