whycxzp
2021-07-26 8c189b243bfbbacb2ab1ce79f4e1ff22708f125a
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);
}