增加定时消息表CMINMSGS已经处理数据 转 历史表操作

This commit is contained in:
zhouxiunai
2018-12-30 22:43:20 +08:00
parent f799c64682
commit 695fff6b22
8 changed files with 251 additions and 1 deletions
@@ -18,6 +18,6 @@ public class RedisServiceTest {
@Test
public void removeFlightInfo()
{
redisService.del(Arrays.asList("FlightInfo:"));
redisService.del(Arrays.asList("flightInfo:"));
}
}
@@ -0,0 +1,21 @@
package com.gzzn.omms.msgexchangeapi.scheduled;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
public class CminmsgsHisScheduledTest {
@Autowired
CminmsgsHisScheduled cminmsgsHisScheduled;
@Test
public void testRun()
{
cminmsgsHisScheduled.scheduled();
}
}
@@ -0,0 +1,5 @@
package com.gzzn.omms.msgexchangeapi.service;
public class CmoutmsgServiceImplTest {
}