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.
29 lines
599 B
Java
29 lines
599 B
Java
package com.glxp.api.service.inout;
|
|
|
|
import com.glxp.api.entity.basic.BasicProductsEntity;
|
|
import com.glxp.api.entity.inout.PurReceiveEntity;
|
|
import com.glxp.api.req.inout.FilterReceiveRequest;
|
|
import com.glxp.api.res.inout.ReceiveResponse;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
public interface ReceiveService {
|
|
|
|
PurReceiveEntity selectById(Long id);
|
|
|
|
int insertOrder(PurReceiveEntity purReceiveEntity);
|
|
|
|
int updateOrder(PurReceiveEntity purReceiveEntity);
|
|
|
|
List<ReceiveResponse> filterList(FilterReceiveRequest filterReceiveRequest);
|
|
|
|
boolean delReceive(String orderIdFk);
|
|
|
|
|
|
|
|
|
|
}
|