1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.whyc.mapper;
|
| import com.whyc.pojo.AFERectifierState;
|
| import java.util.List;
|
| public interface AFERectifierHistoryMapper {
|
| List<AFERectifierState> getHistory(List<String> tableNames);
|
|
|
| // -------------- app mapper --------------------
| List<AFERectifierState> getAppHistory(List<String> tableNames);
|
| }
|
|