NowOutboundService.java 408 Bytes
package com.bsth.service.excep;

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

import com.bsth.entity.excep.Outbound;
import com.bsth.util.PageObject;

public interface NowOutboundService {
	PageObject <Outbound> Pagequery(Map<String, Object> map) ;
	Map<String, Object> getReport( Map<String, Object> map);
	List<Outbound> findPosition(String deviceid, String startdate,
			String enddate);
}