|  | @@ -20,6 +20,7 @@ import com.yonge.cooleshow.biz.dal.dto.req.OrderReq;
 | 
											
												
													
														|  |  import com.yonge.cooleshow.biz.dal.dto.search.*;
 |  |  import com.yonge.cooleshow.biz.dal.dto.search.*;
 | 
											
												
													
														|  |  import com.yonge.cooleshow.biz.dal.entity.*;
 |  |  import com.yonge.cooleshow.biz.dal.entity.*;
 | 
											
												
													
														|  |  import com.yonge.cooleshow.biz.dal.enums.*;
 |  |  import com.yonge.cooleshow.biz.dal.enums.*;
 | 
											
												
													
														|  | 
 |  | +import com.yonge.cooleshow.biz.dal.mapper.SysUserMapper;
 | 
											
												
													
														|  |  import com.yonge.cooleshow.biz.dal.service.*;
 |  |  import com.yonge.cooleshow.biz.dal.service.*;
 | 
											
												
													
														|  |  import com.yonge.cooleshow.biz.dal.support.WrapperUtil;
 |  |  import com.yonge.cooleshow.biz.dal.support.WrapperUtil;
 | 
											
												
													
														|  |  import com.yonge.cooleshow.biz.dal.vo.*;
 |  |  import com.yonge.cooleshow.biz.dal.vo.*;
 | 
											
										
											
												
													
														|  | @@ -119,6 +120,9 @@ public class CourseGroupServiceImpl extends ServiceImpl<CourseGroupDao, CourseGr
 | 
											
												
													
														|  |      @Autowired
 |  |      @Autowired
 | 
											
												
													
														|  |      private RedisCacheService redisCacheService;
 |  |      private RedisCacheService redisCacheService;
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  | 
 |  | +    @Autowired
 | 
											
												
													
														|  | 
 |  | +    private SysUserMapper sysUserMapper;
 | 
											
												
													
														|  | 
 |  | +
 | 
											
												
													
														|  |      @Override
 |  |      @Override
 | 
											
												
													
														|  |      public CourseGroupDao getDao() {
 |  |      public CourseGroupDao getDao() {
 | 
											
												
													
														|  |          return this.baseMapper;
 |  |          return this.baseMapper;
 | 
											
										
											
												
													
														|  | @@ -1066,7 +1070,7 @@ public class CourseGroupServiceImpl extends ServiceImpl<CourseGroupDao, CourseGr
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  |      private SysUser getSysUser(Long userId) {
 |  |      private SysUser getSysUser(Long userId) {
 | 
											
												
													
														|  |          return Optional.ofNullable(userId)
 |  |          return Optional.ofNullable(userId)
 | 
											
												
													
														|  | -                .map(sysUserFeignService::queryUserById)
 |  | 
 | 
											
												
													
														|  | 
 |  | +                .map(sysUserMapper::getByUserId)
 | 
											
												
													
														|  |                  .orElseThrow(() -> new BizException("用户不存在"));
 |  |                  .orElseThrow(() -> new BizException("用户不存在"));
 | 
											
												
													
														|  |      }
 |  |      }
 | 
											
												
													
														|  |  
 |  |  
 |