update 分成功能

This commit is contained in:
Guoqs
2024-09-26 15:40:53 +08:00
parent f3955ce2b0
commit 05d0b319bc
4 changed files with 52 additions and 0 deletions

View File

@@ -44,4 +44,11 @@
#{item.delFlag,jdbcType=CHAR})
</foreach>
</insert>
<update id="deleteByMerchantIdAndStationId">
update station_split_config
set del_flag = '1'
where merchant_id = #{merchantId}
and station_id = #{stationId}
</update>
</mapper>