ScheduleRealInfoService.java 820 Bytes
package com.bsth.service.realcontrol;

import java.util.Collection;
import java.util.List;
import java.util.Map;

import org.springframework.stereotype.Service;

import com.bsth.entity.realcontrol.ScheduleRealInfo;
import com.bsth.service.BaseService;

@Service
public interface ScheduleRealInfoService extends BaseService<ScheduleRealInfo, Long>{

	Map<String, Collection<ScheduleRealInfo>> findByLines(String lines);

	Map<String, Object> outgoAdjust(Long id, String remarks, String dfsj);

	Map<String, Object> destroy(String idsStr, int spaceAdjust, String  remarks, String reason, int spaceNum);

	List<Map<String, String>> findDriverByLine(String lineCode);

	List<Map<String, String>> findConductorByLine(String lineCode);

	List<Map<String, String>> findCarByLine(String lineCode);

}