1
0
mirror of https://github.com/FatttSnake/Pinnacle-OA.git synced 2026-04-04 22:41:24 +08:00

nitice module modified query with mybatis plus linked table to xml

This commit is contained in:
cccccyb
2023-05-11 15:26:55 +08:00
parent 3c7fc85b9e
commit 1defd7ef4e
21 changed files with 498 additions and 151 deletions

View File

@@ -4,6 +4,7 @@ import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.cfive.pinnacle.controller.NoticeController;
import com.cfive.pinnacle.entity.*;
import com.cfive.pinnacle.entity.common.ResponseResult;
import com.cfive.pinnacle.mapper.NoticeMapper;
import com.cfive.pinnacle.service.*;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
@@ -19,6 +20,8 @@ public class NoticeTest {
@Autowired
private NoticeController noticeController;
@Autowired
private NoticeMapper noticeMapper;
@Autowired
private INoticeService iNoticeService;
@Autowired
private INoticeTypeService iNoticeTypeService;
@@ -48,7 +51,7 @@ public class NoticeTest {
@Test
void insertNoticeTest() {
for (int i = 20; i < 40; i++) {
for (int i = 11; i < 40; i++) {
Notice notice = new Notice();
notice.setTitle("title" + i);
notice.setTypeId(1654069011361476609L);
@@ -59,7 +62,7 @@ public class NoticeTest {
notice.setSendTime(sendTime);
notice.setEndTime(endTime);
notice.setContent("Content" + i);
noticeController.addNotice(notice);
noticeMapper.insert(notice);
}
}
@@ -86,7 +89,7 @@ public class NoticeTest {
@Test
void insertNoticeRecTest() {
NoticeReceive receive = new NoticeReceive();
receive.setNoticeId(1654070031407886338L);
receive.setNoticeId(1655408487006437377L);
receive.setUserId(1652714496280469506L);
iNoticeReceiveService.save(receive);
}