INSERT INTO
sys_callback
(callback_id, name, url, json_body, status, fail_count, gmt_create, creator, gmt_modified, modifier, is_delete)
VALUES
(#{callbackId}, #{name}, #{url}, #{jsonBody}, #{status}, #{failCount}, #{gmtCreate}, #{creator}, #{gmtModified}, #{modifier}, #{isDelete})
UPDATE sys_callback
SET
name = #{name},
url = #{url},
json_body = #{jsonBody},
status = #{status},
fail_count = #{failCount},
gmt_modified = #{gmtModified},
modifier = #{modifier}
WHERE
callback_id = #{callbackId}