LoggerZnddService.java
883 Bytes
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);
List<ScheduleRealInfo> schQbc(String xl);
}