SiteMapper1.java
677 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package com.example.demo.mapper.db1;
import com.baomidou.dynamic.datasource.annotation.DS;
import com.example.demo.model.*;
import org.apache.ibatis.annotations.Mapper;
import java.util.List;
import java.util.Map;
/**
* @author sine
*/
@Mapper
public interface SiteMapper1 {
@DS("db1")
List<Scheduling> getScheduling(String date);
@DS("db1")
List<StationRoute> getStationRoute();
@DS("db1")
String getMaxTime(String date);
@DS("db1")
List<LinePW> getLinePW();
@DS("db1")
List<CardDriver> getCardDriver();
@DS("db1")
void insertCardDriver(List<CardDriver> cardDrivers);
@DS("db1")
void deleteCardDriver();
}