增加测试

This commit is contained in:
daihh
2023-09-01 14:48:08 +08:00
parent 44221e65c0
commit 170a42e72c
2 changed files with 10 additions and 0 deletions

View File

@@ -32,6 +32,8 @@ public class UrlSecurityFilterImpl implements IUrlSecurityFilter{
noLoginUrls.add("/xboe/sys/user/sync-all"); noLoginUrls.add("/xboe/sys/user/sync-all");
//noLoginUrls.add(""); //noLoginUrls.add("");
noLoginUrls.add("/xboe/m/exam/alone-extend/save"); noLoginUrls.add("/xboe/m/exam/alone-extend/save");
noLoginUrls.add("/xboe/m/course/manage/test");
} }
@Override @Override

View File

@@ -105,6 +105,14 @@ public class CourseManageApi extends ApiBaseController{
@Autowired @Autowired
IDataUserSyncService userSyncService; IDataUserSyncService userSyncService;
@PostMapping("/test")
public JsonResponse<PageList<Course>> findTest(Pagination pager,CourseQueryDto dto){
//dto.setOrgAid("7003708665807110150");
PageList<Course> coursePageList = courseService.findPage(pager.getPageIndex(), pager.getPageSize(),dto);
return success(coursePageList);
}
/** /**
* 管理列表的查询 * 管理列表的查询
* @param pager * @param pager