StorageLocationMapper.java 494 B

12345678910111213141516171819
  1. package com.tld.mapper;
  2. import com.tld.model.StorageLocation;
  3. import org.apache.ibatis.annotations.Mapper;
  4. import java.util.List;
  5. import java.util.Map;
  6. @Mapper
  7. public interface StorageLocationMapper {
  8. List<StorageLocation> getStorage(StorageLocation storageLocation);
  9. void addStorage(StorageLocation storageLocation);
  10. void delStorage(String id);
  11. void updateStorage(StorageLocation storageLocation);
  12. List<Map<String, Object>> export(StorageLocation storageLocation);
  13. }