给被自动关闭会销关联线索发通知

This commit is contained in:
feng.li
2023-12-19 16:15:00 +08:00
parent fd403c1f88
commit 72b33abad8
7 changed files with 93 additions and 5 deletions

View File

@@ -6,6 +6,8 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.AbstractJUnit4SpringContextTests;
import java.util.Date;
/**
* @author Fun Li 2023/12/6 16:17
* @version 1.0
@@ -24,8 +26,13 @@ class ExhibitionServiceTest extends AbstractJUnit4SpringContextTests {
@Test
void testAutoCloseExhibition() {
int i = exhibitionService.autoCloseExhibition();
int i = exhibitionService.autoCloseExhibition(new Date());
log.info(i + "");
}
@Test
void testSendSMSToExhibitionApplicants() {
exhibitionService.sendSMSToExhibitionApplicants();
}
}