ing
This commit is contained in:
parent
66576b56d7
commit
c0618808bf
2
pom.xml
2
pom.xml
|
@ -13,7 +13,7 @@
|
|||
<groupId>com.loafle.overflow</groupId>
|
||||
<artifactId>commons-java</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<version>1.0.5-SNAPSHOT</version>
|
||||
<version>1.0.6-SNAPSHOT</version>
|
||||
<name>com.loafle.overflow.commons-java</name>
|
||||
|
||||
<properties>
|
||||
|
|
|
@ -18,6 +18,6 @@ public interface MetaHistoryTypeService {
|
|||
MetaHistoryType regist(MetaHistoryType metaHistoryType) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
List<MetaHistoryType> registAllByMetaHistoryTypes(List<MetaHistoryType> metaHistoryTypes) throws OverflowException;
|
||||
List<MetaHistoryType> registAll(List<MetaHistoryType> metaHistoryTypes) throws OverflowException;
|
||||
|
||||
}
|
||||
|
|
|
@ -2,7 +2,6 @@ package com.loafle.overflow.service.central.meta;
|
|||
|
||||
import com.loafle.overflow.core.annotation.WebappAPI;
|
||||
import com.loafle.overflow.core.exception.OverflowException;
|
||||
import com.loafle.overflow.model.meta.MetaProbeOs;
|
||||
import com.loafle.overflow.model.meta.MetaProbePackage;
|
||||
|
||||
import java.util.List;
|
||||
|
@ -12,5 +11,5 @@ import java.util.List;
|
|||
*/
|
||||
public interface MetaProbePackageService {
|
||||
@WebappAPI
|
||||
List<MetaProbePackage> readAllByMetaProbeOs(MetaProbeOs metaProbeOs) throws OverflowException;
|
||||
List<MetaProbePackage> readAllByMetaProbeOsID(Short metaProbeOsID) throws OverflowException;
|
||||
}
|
||||
|
|
|
@ -21,7 +21,7 @@ public interface NotificationService {
|
|||
Page<Notification> readAllUnconfirmedByMemberEmail(String memberEmail, PageParams pageParams) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
int readUnconfirmedCountByMemberEmail(String memberEmail) throws OverflowException;
|
||||
Long readUnconfirmedCountByMemberEmail(String memberEmail) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
Page<Notification> markAllAsReadByMemberEmail(String memberEmail, PageParams pageParams) throws OverflowException;
|
||||
|
|
Loading…
Reference in New Issue
Block a user