ScheduleService.java
1.04 KB
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
40
41
42
43
44
45
46
package com.bsth.service.schedule;
import com.bsth.data.attendance.entity.JsyAttendance;
import com.bsth.data.schedule.dto.ScheduleInOut;
import java.util.Collection;
import java.util.List;
import java.util.Map;
/**
* Created by panzhao on 2017/8/30.
*/
public interface ScheduleService {
List<ScheduleInOut> findByCurrentTime();
Collection<ScheduleInOut> findAll();
List<ScheduleInOut> all_out();
/**
* 驾驶员报到
* @param att
*/
void jsyReport(JsyAttendance att);
Map<String, Object> findAbnormalByLineArray(String idx);
Map<String,Object> findSchByLpName(String lineCode, String lpName);
List<ScheduleInOut> findOutByIdx(String idx);
Map<String,Object> dftz(Map<String, Object> map);
Map<String,Object> tzrc(String cpcsJson);
Map<String,Object> rybd(Map<String, Object> map);
Map<String,Object> cycc(Map<String, Object> map);
//void inOut(CarInOutEntity obj);
//void busInOut(CarInOutEntity obj);
//void busInOutRfid(CarInOutEntity cio, ScheduleInOut sio);
}