1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.whyc.mapper;
|
| import com.whyc.pojo.UpsPowerDataHistory;
| import org.apache.ibatis.annotations.Param;
|
| import java.util.List;
|
| public interface UpsPowerDataHistoryMapper{
|
| void createTable4UpsDataHistory(@Param("tableName") String tableName);
|
| void insert(String tableName, UpsPowerDataHistory dataHistory);
|
| void deleteTableList(List<String> tableNameListToBeDeleted);
|
| }
|
|