Commit f2c641b6 authored by huyuchen's avatar huyuchen

合并推送修改

parent fa48f608
...@@ -1499,7 +1499,7 @@ ...@@ -1499,7 +1499,7 @@
<!-- 更改社保公积金推送状态 --> <!-- 更改社保公积金推送状态 -->
<update id="updateBySocialPayment"> <update id="updateBySocialPayment">
update t_payment_info update t_payment_info
set PUSH_STATUS = '0' set PUSH_STATUS = '0',UPDATE_TIME = NOW()
where where
ID = #{id} ID = #{id}
</update> </update>
...@@ -1507,7 +1507,7 @@ ...@@ -1507,7 +1507,7 @@
<!-- 更改社保公积金推送状态 --> <!-- 更改社保公积金推送状态 -->
<update id="updateBySocialPaymentList"> <update id="updateBySocialPaymentList">
update t_payment_info update t_payment_info
set PUSH_STATUS = '0' set PUSH_STATUS = '0',UPDATE_TIME = NOW()
where where
ID in (${idStr}) ID in (${idStr})
</update> </update>
...@@ -1515,14 +1515,14 @@ ...@@ -1515,14 +1515,14 @@
<!-- 更改社保公积金推送状态 --> <!-- 更改社保公积金推送状态 -->
<update id="updateBySocialIncomePayment"> <update id="updateBySocialIncomePayment">
update t_payment_info update t_payment_info
set INCOME_STATUS = '0' set INCOME_STATUS = '0',UPDATE_TIME = NOW()
where where
ID = #{id} ID = #{id}
</update> </update>
<update id="updateBySocialIncomeFlag"> <update id="updateBySocialIncomeFlag">
update t_payment_info update t_payment_info
set IS_INCOME_STATUS = '1' set IS_INCOME_STATUS = '1',UPDATE_TIME = NOW()
where where
ID = #{id} ID = #{id}
</update> </update>
......
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