天一电厂UPS动环数据对接,SNMP协议
whycxzp
2024-02-29 ac476c867af05823e33c7746eb2ec37dd26abe7a
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);
 
}