加打印日志

This commit is contained in:
daihh
2023-09-01 10:45:29 +08:00
parent 43961699cb
commit 44221e65c0
2 changed files with 5 additions and 2 deletions

View File

@@ -118,12 +118,15 @@ public class CourseManageApi extends ApiBaseController{
//getCurrent().get
try {
UserOrgIds userOrgIds=outSideDataService.getOrgIds();
List<String> orgIds = userOrgIds.getIds();
if(userOrgIds.getPermissions().containsKey(UserOrgIds.IsSystemAdminKey)) {
if(userOrgIds.getPermissions().containsKey(UserOrgIds.IsSystemAdminKey)){
dto.setIsSystemAdmin(userOrgIds.getPermissions().get(UserOrgIds.IsSystemAdminKey));
}else {
dto.setIsSystemAdmin(false);
}
String ids="";
if(userOrgIds.getIds()!=null && !userOrgIds.getIds().isEmpty())
{

View File

@@ -293,7 +293,7 @@ public class CourseServiceImpl implements ICourseService {
}
PageList<Course> rs=courseDao.findPage(pageIndex, pageSize, filters, oc);
log.info("查询出的条数:"+rs.getCount());
return rs;
}