| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- package com.tld.mapper;
- import com.tld.model.*;
- import org.apache.ibatis.annotations.Mapper;
- import org.apache.ibatis.annotations.Param;
- import java.util.List;
- import java.util.Map;
- @Mapper
- public interface DictionaryMapper {
- String getTableName(String type);
- void addMaterial(Dictionary dictionary);
- void addDictionary(Dictionary dictionary);
- List<Dictionary> getDictionary(Dictionary dictionary);
- void addTreasuryAccount(Dictionary dictionary);
- List<Dictionary> getDictionaryPage(Dictionary dictionary);
- String getWarehouse(String storageLocationCode);
- Dictionary getWarehouseInfo(WarehouseTransfer warehouseTransfer);
- int getInventorySumAmount(Dictionary dictionary1);
- List<Dictionary> getDictionaryMaterialPage(Dictionary dictionary);
- void updateMaterial(Dictionary dictionary);
- void updateTreasuryAccount(Dictionary dictionary);
- void updateDictionary(Dictionary dictionary);
- void deleteDictionary(Dictionary dictionary);
- void addAccess(Access access);
- void addLogdata(LogData logData);
- Dictionary getTableNameList(Dictionary dictionary);
- void addStorageLocation(@Param("storageLocationCode") String storageLocationCode, @Param("warehouseWhere") String warehouseWhere, @Param("storageLocationName") String storageLocationName);
- List<Map<String, Object>> export(Dictionary dictionary);
- List<Dictionary> getDictionaryPageMaterial(Dictionary dictionary);
- void deleteRepertory(Dictionary dictionary);
- List<Dictionary> getDictionaryPageWarehouse(Dictionary dictionary);
- List<Map<String, Object>> elseExport(Dictionary dictionary);
- List<Map<String, Object>> warehouseExport(Dictionary dictionary);
- }
|