select id, tenant_key, member_account, game_account, platform_code, currency_code, create_by, create_time, update_by, update_time from ff_member
insert into ff_member
tenant_key,
member_account,
game_account,
platform_code,
currency_code,
create_by,
create_time,
update_by,
update_time,
#{tenantKey},
#{memberAccount},
#{gameAccount},
#{platformCode},
#{currencyCode},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
update ff_member
tenant_key = #{tenantKey},
member_account = #{memberAccount},
game_account = #{gameAccount},
platform_code = #{platformCode},
currency_code = #{currencyCode},
create_by = #{createBy},
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
where id = #{id}
delete from ff_member where id = #{id}
delete from ff_member where id in
#{id}