ing
This commit is contained in:
parent
2815cb42a9
commit
66576b56d7
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.4-SNAPSHOT</version>
|
||||
<version>1.0.5-SNAPSHOT</version>
|
||||
<name>com.loafle.overflow.commons-java</name>
|
||||
|
||||
<properties>
|
||||
|
|
|
@ -1,24 +1,24 @@
|
|||
package com.loafle.overflow.service.central.history;
|
||||
|
||||
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.history.History;
|
||||
import com.loafle.overflow.model.meta.MetaHistoryType;
|
||||
import org.springframework.data.domain.Page;
|
||||
|
||||
public interface HistoryService {
|
||||
// ??
|
||||
History regist(History history);
|
||||
History regist(History history) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
Page<History> readAllByProbeIDAndMetaHistoryTypeID(Long probeID, Integer metaHistoryTypeID, PageParams pageParams);
|
||||
Page<History> readAllByProbeIDAndMetaHistoryTypeID(Long probeID, Integer metaHistoryTypeID, PageParams pageParams) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
Page<History> readAllByProbeID(Long probeID, PageParams pageParams);
|
||||
Page<History> readAllByProbeID(Long probeID, PageParams pageParams) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
Page<History> readAllByDomainID(Long domainID, PageParams pageParams);
|
||||
Page<History> readAllByDomainID(Long domainID, PageParams pageParams) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
Page<History> readAllByDomainIDAndMetaHistoryTypeID(Long domainID, Integer metaHistoryTypeID, PageParams pageParams);
|
||||
Page<History> readAllByDomainIDAndMetaHistoryTypeID(Long domainID, Integer metaHistoryTypeID, PageParams pageParams) throws OverflowException;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user