ApiWCS.kt 401 B

1234567891011121314151617181920
  1. package com.example.pda.network
  2. import retrofit2.Response
  3. import retrofit2.http.Body
  4. import retrofit2.http.GET
  5. import retrofit2.http.POST
  6. import retrofit2.http.QueryMap
  7. // 定义了一个接口 ApiService,用于与服务器进行库存相关的网络请求
  8. interface ApiWCS {
  9. @POST("/wcs/WebApi/confirmIn")
  10. suspend fun upstation(
  11. )
  12. // 提交库存数据到服务器的接口
  13. }