ScheduleRealInfoService.java
490 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, Long>{
Map<String, Collection<ScheduleRealInfo>> findByLines(String lines);
Map<String, Object> outgoAdjust(Long id, String remarks, String dfsj);
}