2018-11-28 20:32:19 +08:00
|
|
|
package com.gzzn.omms.msgexchangeapi.service;
|
|
|
|
|
|
|
|
|
|
import com.gzzn.omms.msgexchangeapi.domain.primary.entity.Cminmsg;
|
|
|
|
|
|
|
|
|
|
public interface ICminmsgService {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 发送xml格式的消息到cminmsgs表
|
|
|
|
|
* @param xmlMsg
|
|
|
|
|
*/
|
|
|
|
|
public Cminmsg sendXmlMsg(String xmlMsg);
|
|
|
|
|
}
|