This is my interface that I have:
这是我的界面:
public interface DistributionServerAPI {
@Headers("Content-type: application/json")
@POST("device/add")
Call<DeviceModel> createDevice(@Body ArrayList<DeviceModel> deviceArray);
}
pThis is my interface that I have:
这是我的界面:
public interface DistributionServerAPI {
@Headers("Content-type: application/json")
@POST("device/add")
Call<DeviceModel> createDevice(@Body ArrayList<DeviceModel> deviceArray);
}
p