This commit is contained in:
insanity 2018-06-12 18:19:01 +09:00
parent 1d0584ceb3
commit 6a8265a38f
2 changed files with 4 additions and 1 deletions

View File

@ -13,7 +13,7 @@
<groupId>com.loafle.overflow</groupId>
<artifactId>commons-java</artifactId>
<packaging>jar</packaging>
<version>1.0.55-SNAPSHOT</version>
<version>1.0.56-SNAPSHOT</version>
<name>com.loafle.overflow.commons-java</name>
<properties>

View File

@ -30,6 +30,9 @@ public interface TargetService {
@WebappAPI
Page<Target> readAllByProbeID(Long probeID, PageParams pageParams) throws OverflowException;
@WebappAPI
List<Target> readAllTargetByProbeID(Long probeID) throws OverflowException;
Target increaseSensorCount(Long id) throws OverflowException;
Target decreaseSensorCount(Long id) throws OverflowException;