LoggerZnddService.java
536 Bytes
package com.bsth.service.zndd;
import com.bsth.entity.realcontrol.ScheduleRealInfo;
import com.bsth.entity.zndd.LoggerZndd;
import com.bsth.service.BaseService;
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);
}