select code, authentication, user_id from oauth_code
insert into oauth_code
code,authentication,user_id,#{code},#{authentication},#{userId},
update oauth_code
authentication = #{authentication},user_id = #{userId},
where code = #{code}
delete from oauth_code where code = #{code}
delete from oauth_code where code in
#{code}