| | |
| | | package com.whyc.mapper; |
| | | |
| | | import com.whyc.pojo.BattalarmDataHistory; |
| | | import com.whyc.pojo.DevalarmDataHistory; |
| | | import com.whyc.pojo.PwrdevAlarmHistory; |
| | | import com.whyc.pojo.UserLog; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | |
| | | |
| | | void insertBatch4UserLogByYear(@Param("year")String year, List<UserLog> userLogs); |
| | | |
| | | void createTable4PowerAlarmHistoryByYear(@Param("year") String year); |
| | | |
| | | void insertBatch4PowerAlarmHistoryByYear(String year, List<PwrdevAlarmHistory> temp); |
| | | |
| | | void createTable4BattAlarmDataHistoryByYear(@Param("year") String year); |
| | | |
| | | void insertBatch4BattAlarmDataHistoryByYear(String year, List<BattalarmDataHistory> temp); |
| | | |
| | | void createTable4DevAlarmDataHistoryByYear(@Param("year") String year); |
| | | |
| | | void insertBatch4DevAlarmDataHistoryByYear(String year, List<DevalarmDataHistory> temp); |
| | | |
| | | void createBattState_RT_RamDB_Table(); |
| | | |
| | | void updateTb_App_Sys_AppServerTable(); |
| | | |
| | | List<String> getTableListLike(String dbName, String tableLike); |
| | | |
| | | } |