retrofit2 DELETE使用

/**
 *删除购物车条目
 */
@HTTP(method = "DELETE", path = "cart/deletes", hasBody = true)
suspend fun deleteShopCart(
    @Body mShopCartDeleteParams: MutableList
): DataResponse

你可能感兴趣的:(retrofit2 DELETE使用)