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
403 B
Java
11 lines
403 B
Java
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 {
|
|
BaseResponse<PageSimpleResponse<ThrInvProductResponse>> getInvPrdoductResponse(ThrOnhandRequest onhandRequest, String url);
|
|
}
|