| | |
| | | public int insertHistorySpecialTable(Map<String, Object> parameters) { |
| | | return historyMapper.insertHistorySpecialTable(parameters); |
| | | } |
| | | |
| | | @Override |
| | | public int deleteHistoryData(String oldTime) { |
| | | return historyMapper.deleteHistoryData(oldTime); |
| | | } |
| | | |
| | | @Override |
| | | public void deletePartition(String p) { |
| | | historyMapper.deletePartition(p); |
| | | } |
| | | |
| | | @Override |
| | | public void createHistoryTable(String yearMonthDay) { |
| | | historyMapper.createHistoryTable(yearMonthDay); |
| | | } |
| | | |
| | | @Override |
| | | public void dropHistoryTable(String yearMonthDay) { |
| | | historyMapper.dropHistoryTable(yearMonthDay); |
| | | } |
| | | } |