调整包路径
This commit is contained in:
@@ -1,7 +1,11 @@
|
||||
package com.gzzn.omms.msgexchangeapi.service;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
import com.gzzn.omms.msgexchangeapi.domain.primary.entity.Cminmsg;
|
||||
|
||||
|
||||
public interface ICminmsgService {
|
||||
|
||||
/**
|
||||
@@ -9,4 +13,17 @@ public interface ICminmsgService {
|
||||
* @param xmlMsg
|
||||
*/
|
||||
public Cminmsg sendXmlMsg(String xmlMsg);
|
||||
|
||||
/**
|
||||
* 获取指定时间后的新消息
|
||||
* @return
|
||||
*/
|
||||
public List<Cminmsg> getNewMsgsAfterDate(Date afterdate);
|
||||
|
||||
/**
|
||||
* 获取指定id后的消息,消息id有序
|
||||
* @param id
|
||||
* @return
|
||||
*/
|
||||
public List<Cminmsg> getNewMsgsAfterId(Long id);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user