package com.zy.asrs.service; import com.baomidou.mybatisplus.plugins.Page; import com.baomidou.mybatisplus.service.IService; import com.zy.asrs.entity.OrderDetl; import java.util.List; public interface OrderDetlService extends IService { List selectByOrderId(Long orderId); Page getPakoutPage(Page page); OrderDetl selectItem(Long orderId, String matnr, String batch); OrderDetl selectItem(String orderNo, String matnr, String batch); OrderDetl selectItemNoneOfBatch(String orderNo, String matnr); OrderDetl selectItemOfBatch(String matnr, String batch); OrderDetl findByLook(List orderDetls, Long orderId, String matnr, String batch); boolean increaseAnfme(Long orderId, String matnr, String batch, Double qty); boolean increase(Long orderId, String matnr, String batch, Double qty); boolean decrease(String orderNo, String matnr, String batch, Double qty); boolean modifyStatus(Long orderId, Integer status); List selectRemainder(Long orderId); OrderDetl selectContainBatch(String batch); }