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.
20 lines
530 B
Java
20 lines
530 B
Java
2 years ago
|
package com.glxp.api.service.inv;
|
||
|
|
||
|
import com.glxp.api.common.res.BaseResponse;
|
||
|
import com.glxp.api.req.inv.AddInvPlaceOrderRequest;
|
||
|
import com.glxp.api.req.inv.FilterInvPlaceOrderRequest;
|
||
|
import com.glxp.api.res.inv.InvPlaceOrderResponse;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
/**
|
||
|
* 物资上架记录Service
|
||
|
*/
|
||
|
public interface InvPlaceOrderService {
|
||
|
|
||
|
List<InvPlaceOrderResponse> filterList(FilterInvPlaceOrderRequest filterInvPlaceOrderRequest);
|
||
|
|
||
|
BaseResponse addInvPlaceOrder(AddInvPlaceOrderRequest addInvPlaceOrderRequest);
|
||
|
|
||
|
}
|