LoggerZnddService.java
955 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
package com.bsth.service.zndd;
import com.bsth.entity.realcontrol.ScheduleRealInfo;
import com.bsth.entity.zndd.LoggerZndd;
import com.bsth.service.BaseService;
import org.springframework.web.bind.annotation.RequestParam;
import java.util.List;
import java.util.Map;
public interface LoggerZnddService extends BaseService<LoggerZndd, Integer> {
List<Map<String, Object>> listAll(Map<String, Object> map);
public ScheduleRealInfo schlist(String lineCode,Integer dir);
public Map<String, Object> znddConfig(Map<String, Object> map);
ScheduleRealInfo thissch(Integer ids);
String LineUserAll(@RequestParam Integer userId);
Map<String, Object> schTZSF(String line,String date,String endDate,String changType,String type);
ScheduleRealInfo nextSch(Long id);
Map schDeepSeep(String message);
String line_yd(String message);
List<ScheduleRealInfo> schQbc(String xl);
List line_zd(String message);
}