whyczh
2021-07-01 2e0bc686f2100782fa1d331cc98b5f65ba19c206
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.whyc.mapper;
 
import com.whyc.pojo.RectifierPowerRT;
 
import java.util.List;
 
public interface RectifierPowerHistoryMapper {
    List<RectifierPowerRT> getHistory(List<String> tableNames);
 
 
 
 
    // --------------   app mapper --------------------
    List<RectifierPowerRT> getAppHistory(List<String> tableNames);
}