package com.tld.mapper; import com.tld.model.StorageLocation; import org.apache.ibatis.annotations.Mapper; import java.util.List; import java.util.Map; @Mapper public interface StorageLocationMapper { List getStorage(StorageLocation storageLocation); void addStorage(StorageLocation storageLocation); void delStorage(String id); void updateStorage(StorageLocation storageLocation); List> export(StorageLocation storageLocation); }