package com.tld.mapper; import com.tld.model.*; import com.tld.model.Error; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.List; import java.util.Map; @Mapper public interface QueryListMapper { List> dullGoods(Inventory inventory); Map reserveWarning(Map map); List> getMaterial(String wllbCode,String materialName); List> storageLocation(Inventory inventory); List> getStorageLocation(Inventory inventory); List getAccess(Access access); List getAskGoods(AskGoods askGoods); List> getAskGoodsExcel(AskGoods askGoods); List getInvite(AskGoods askGoods); List> getInviteExcel(AskGoods askGoods); List getDelivery(Delivery delivery); List> getDeliveryExcel(Delivery delivery); List getWarehouseTransfer(WarehouseTransfer warehouseTransfer); List> getWarehouseTransferExcel(WarehouseTransfer warehouseTransfer); List getLogData(LogData logData); List> getQueryInventory(Inventory inventory); List> dullGoodsExport(Inventory inventory); List> reserveWarnings(Inventory inventory); List> reserveWarningsExport(Inventory inventory); List> onOffExcel(Access access); List> getLogDataExcel(LogData logData); String getAmount(AskGoods goods); String getAmounts(Delivery delivery1); List getOtherReceivingGoods(Notice notice); void updateType(@Param("wmsCode") String wmsCode, @Param("type") int type, @Param("code") String code); List getOtherShipments(AskGoods askGoods); List getProcurementScreen(ReceiveGoods receiveGoods); Integer getTotalQuantity(ReceiveGoods receiveGoods); Integer getQuantityArrived(ReceiveGoods receiveGoods); Integer getUnarrivedQuantity(ReceiveGoods receiveGoods); Integer getTimeoutQuantity(ReceiveGoods receiveGoods); Integer getPurchaseSum(@Param("format") String format, @Param("nameType") String nameType); Integer getSomeoneSum(@Param("format") String format, @Param("nameType") String nameType); Integer getAskGoodsSum(@Param("format") String format, @Param("nameType") String nameType); Integer getInviteSum(@Param("format") String format, @Param("nameType") String nameType); Integer getEnquirySum(@Param("format") String format, @Param("nameType") String nameType); Integer getNoticeSum(@Param("format") String format, @Param("nameType") String nameType); Integer getDeliverySum(@Param("format") String format, @Param("nameType") String nameType); List> storageLocationNum(Inventory inventory); List> getTestTwo(); List> getPdaTask(User user); int getShangjia(User user); int getJihua(User user); int getYaoqing(User user); int getBanChenPin(User user); int getChanChenPin(User user); int getXiaoShou(User user); int getQiTaRu(User user); int getQiTaChu(User user); int getYiKu(User user); int getZhuiSu(User user); int getBanChenPinChu(User user); List getPlannedDelivery(User user); List getInviteDelivery(User user); List> getPlannedDepartment(User user); List> getInviteDepartment(User user); List getAskGoodsInfo(User user); List getInviteInfo(User user); }