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.
udi-wms-java/src/main/java/com/glxp/api/service/inout/ReceiveService.java

29 lines
599 B
Java

2 years ago
package com.glxp.api.service.inout;
import com.glxp.api.entity.basic.BasicProductsEntity;
2 years ago
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);
2 years ago
int insertOrder(PurReceiveEntity purReceiveEntity);
int updateOrder(PurReceiveEntity purReceiveEntity);
List<ReceiveResponse> filterList(FilterReceiveRequest filterReceiveRequest);
boolean delReceive(String orderIdFk);
2 years ago
}