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