package com.chinaitop.depot.storage.mapper; import com.chinaitop.depot.storage.model.ClearanceConfirmation; import com.chinaitop.depot.storage.model.StorageStorehouseBusiness; import org.springframework.stereotype.Repository; import java.math.BigDecimal; import java.util.Date; import java.util.List; import java.util.Map; @Repository public interface ClearanceConfirmationMapper { ClearanceConfirmation selectCqqrd(Integer warehouseId); List getCleConList(Map map); ClearanceConfirmation findByCleCon(Integer id); int insert(ClearanceConfirmation record); int updateByPrimaryKey(ClearanceConfirmation record); List findByCleConList(Map modelMap1); Map selectFcbgz(Map map); Map getexcessLossQuantity(Integer warehouseId); Map getStoreHouse(Integer warehouseId); List findStorehouseList(Integer orgId); List findByWarehouseList(Integer storehouseId); }