target remove page

This commit is contained in:
geek 2018-06-21 19:32:12 +09:00
parent 62c6b878ae
commit c46fdccb98

View File

@ -4,9 +4,7 @@ import java.util.List;
import com.loafle.overflow.core.annotation.WebappAPI;
import com.loafle.overflow.core.exception.OverflowException;
import com.loafle.overflow.core.model.PageParams;
import com.loafle.overflow.model.target.Target;
import org.springframework.data.domain.Page;
/**
* Created by insanity on 17. 6. 28.
@ -28,13 +26,13 @@ public interface TargetService {
Target modify(Target target) throws OverflowException;
@WebappAPI
Page<Target> readAllByProbeID(Long probeID, PageParams pageParams) throws OverflowException;
List<Target> readAllByProbeID(Long probeID) throws OverflowException;
@WebappAPI
List<Target> readAllTargetByProbeID(Long probeID) throws OverflowException;
Target increaseSensorCount(Long id) throws OverflowException;
Target decreaseSensorCount(Long id) throws OverflowException;
}