Commit 6dff9653 authored by 刘林's avatar 刘林

fix(jg):更名变更更新使用表大小写敏感报错修改

parent 82eadf15
......@@ -452,13 +452,10 @@
</update>
<update id="updateUseUnitNameByRecords">
UPDATE
idx_biz_jg_use_info
SET
USE_UNIT_NAME = #{useUnitName}
WHERE
USE_UNIT_CREDIT_CODE = #{useUnitCreditCode}
and RECORD in
UPDATE IDX_BIZ_JG_USE_INFO
SET "USE_UNIT_NAME" = #{useUnitName}
WHERE "USE_UNIT_CREDIT_CODE" = #{useUnitCreditCode}
AND "RECORD" IN
<foreach item="item" collection="records" open="(" close=")" separator=",">
#{item}
</foreach>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment