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.
12 lines
300 B
Java
12 lines
300 B
Java
1 year ago
|
package com.glxp.api.service.thrsys;
|
||
|
|
||
|
import com.glxp.api.req.inv.FilterInvProductRequest;
|
||
|
|
||
|
public interface ThrInvOrderService {
|
||
|
|
||
|
/**
|
||
|
* 查询三方系统的出入库明细、进行处理
|
||
|
*/
|
||
|
public void handleExternalThrInvOrder(FilterInvProductRequest filterInvProductRequest);
|
||
|
}
|