| | |
| | | where id = #{record.id} and revision=#{record.revision} |
| | | </update> |
| | | |
| | | <update id="updateGsdById"> |
| | | update mall_member_amount |
| | | set revision = revision + 1, |
| | | gsd = #{record.gsd} |
| | | where id = #{record.id} and revision=#{record.revision} |
| | | </update> |
| | | |
| | | <update id="updateFrozenNftById"> |
| | | update mall_member_amount |
| | | set revision = revision + 1, |
| | |
| | | where id = #{record.id} and revision=#{record.revision} |
| | | </update> |
| | | |
| | | <update id="updateTrendsNftAndGsdById"> |
| | | update mall_member_amount |
| | | set revision = revision + 1, |
| | | gsd = #{record.gsd}, |
| | | trends_nft = #{record.trendsNft} |
| | | where id = #{record.id} and revision=#{record.revision} |
| | | </update> |
| | | |
| | | <update id="updateFcmCntAvaAndGsdById"> |
| | | update mall_member_amount |
| | | set revision = revision + 1, |
| | | gsd = #{record.gsd}, |
| | | fcm_cnt_ava = #{record.fcmCntAva} |
| | | where id = #{record.id} and revision=#{record.revision} |
| | | </update> |
| | | |
| | | </mapper> |