ScheduleRealInfoService.java
418 Bytes
package com.bsth.service.realcontrol;
import java.util.Collection;
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, Integer>{
Map<String, Collection<ScheduleRealInfo>> findByLines(String lines);
}