mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/per-boe/java-servers.git
synced 2025-12-09 02:46:50 +08:00
加打印日志
This commit is contained in:
@@ -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())
|
||||
{
|
||||
|
||||
@@ -293,7 +293,7 @@ public class CourseServiceImpl implements ICourseService {
|
||||
}
|
||||
|
||||
PageList<Course> rs=courseDao.findPage(pageIndex, pageSize, filters, oc);
|
||||
|
||||
log.info("查询出的条数:"+rs.getCount());
|
||||
return rs;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user