1234567891011121314151617181920 |
- package com.example.pda.network
- import retrofit2.Response
- import retrofit2.http.Body
- import retrofit2.http.GET
- import retrofit2.http.POST
- import retrofit2.http.QueryMap
- interface ApiWCS {
- @POST("/wcs/WebApi/confirmIn")
- suspend fun upstation(
- )
-
- }
|