传query
@DELETE("/community/consumer/post/comment")
suspend fun deleteComment (@Query("vin") id: String): Response<Any>
传body
@HTTP(method = "DELETE", path = "/community/consumer/post/comment", hasBody = true)
suspend fun deleteComment (@Body request: DeleteCommentRequest): Response<Any>