ScheduleRealInfoService.java
601 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);
Map<String, Object> destroy(String idsStr, int spaceAdjust, String remarks, String reason, int spaceNum);
}