提取发送获取日航班计划消息的代码

This commit is contained in:
zhouxiunai
2018-12-06 14:57:32 +08:00
parent 3e588fecf6
commit 47e473d9b1
3 changed files with 69 additions and 29 deletions
@@ -0,0 +1,18 @@
package com.gzzn.omms.msgexchangeapi.service;
import java.util.Date;
/**
*
* @author Administrator
*
*/
public interface ICmoutmsgService {
/**
* 向Cmoutmsgs发送日航班计划获取消息
* @param date 发送获取指定时间后的日航班计划
* @return 成功或失败
*/
public Boolean sendSchdGetMsg(Date date);
}