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