12345678910111213141516171819 |
- 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<StorageLocation> getStorage(StorageLocation storageLocation);
- void addStorage(StorageLocation storageLocation);
- void delStorage(String id);
- void updateStorage(StorageLocation storageLocation);
- List<Map<String, Object>> export(StorageLocation storageLocation);
- }
|