client_id,
client_title,
client_app_id,
client_app_key,
client_app_secret,
client_desc,
status,
is_fixed
INSERT INTO client
client_id,
client_title,
client_app_id,
client_app_key,
client_app_secret,
client_desc,
status,
created_by,
created_at,
#{clientId ,jdbcType=BIGINT},
#{clientTitle ,jdbcType=VARCHAR},
#{clientAppId ,jdbcType=VARCHAR},
#{clientAppKey ,jdbcType=VARCHAR},
#{clientAppSecret ,jdbcType=VARCHAR},
#{clientDesc ,jdbcType=VARCHAR},
#{status ,jdbcType=BIGINT},
#{createdBy ,jdbcType=BIGINT},
#{createdAt ,jdbcType=TIMESTAMP},
UPDATE client
client_title = #{clientTitle, jdbcType=VARCHAR},
client_desc = #{clientDesc, jdbcType=VARCHAR},
client_app_id = #{clientAppId ,jdbcType=VARCHAR},
client_app_key = #{clientAppKey ,jdbcType=VARCHAR},
client_app_secret = #{clientAppSecret ,jdbcType=VARCHAR},
status = #{status ,jdbcType=BIGINT},
updated_by = #{updatedBy ,jdbcType=BIGINT},
updated_at = #{updatedAt ,jdbcType=TIMESTAMP},
WHERE client_id = #{clientId ,jdbcType=BIGINT}
UPDATE client
deleted_flag = #{deletedFlag,jdbcType=BIGINT},
deleted_time = #{deletedTime,jdbcType=VARCHAR},
deleted_by = #{deletedBy,jdbcType=BIGINT},
WHERE client_id = #{clientId ,jdbcType=BIGINT}