添加runner ,启动时发送获取日航班计划的消息

This commit is contained in:
zhouxiunai
2018-11-28 16:22:33 +08:00
parent 047ae94f64
commit 7fb816ddf8
14 changed files with 477 additions and 36 deletions
@@ -0,0 +1,11 @@
package com.gzzn.omms.msgexchangeapi.dao;
import org.springframework.data.repository.CrudRepository;
import com.gzzn.omms.msgexchangeapi.entiy.Cmoutmsg;
public interface CmoutmsgDao extends CrudRepository<Cmoutmsg, Long> {
}