whycrzg
2021-05-26 bf7833def6436a4100f15d179717190d9574666c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.whyc.mapper;
 
import com.whyc.pojo.CentralMonitorSysRT;
 
import java.util.List;
 
public interface CentralMonitorSysRTHistoryMapper {
    List<CentralMonitorSysRT> getHistory(List<String> tableNames);
 
 
 
 
 
 
    // --------------   app mapper --------------------
    List<CentralMonitorSysRT> getAppHistory(List<String> tableNames);
}