You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
410 B
Java
11 lines
410 B
Java
4 months ago
|
package com.glxp.api.httpClient.serviceClient;
|
||
|
|
||
|
import com.glxp.api.common.res.BaseResponse;
|
||
|
import com.glxp.api.req.thrsys.ThrOnhandRequest;
|
||
|
import com.glxp.api.res.PageSimpleResponse;
|
||
|
import com.glxp.api.res.thrsys.ThrInvProductResponse;
|
||
|
|
||
|
public interface ErpInvClient {
|
||
|
public BaseResponse<PageSimpleResponse<ThrInvProductResponse>> getInvPrdoductResponse(ThrOnhandRequest onhandRequest, String url);
|
||
|
}
|