|  | @@ -72,6 +72,8 @@ public class StudentOrderController extends BaseController {
 | 
	
		
			
				|  |  |      private StudentPaymentRouteOrderDao studentPaymentRouteOrderDao;
 | 
	
		
			
				|  |  |      @Autowired
 | 
	
		
			
				|  |  |      private StudentGoodsSellDao studentGoodsSellDao;
 | 
	
		
			
				|  |  | +    @Autowired
 | 
	
		
			
				|  |  | +    private LuckDrawCountService luckDrawCountService;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      @Value("${spring.profiles.active:dev}")
 | 
	
	
		
			
				|  | @@ -137,6 +139,9 @@ public class StudentOrderController extends BaseController {
 | 
	
		
			
				|  |  |              orderDetail.put("detail", info);
 | 
	
		
			
				|  |  |          } else if (orderByOrderNo.getGroupType().equals(GroupType.GOODS_SELL)) {
 | 
	
		
			
				|  |  |              orderDetail.put("detail", studentGoodsSellDao.getStudentGoodsSellDto(orderNo));
 | 
	
		
			
				|  |  | +        } else if (orderByOrderNo.getType().equals(OrderTypeEnum.DOUBLE_ELEVEN2020)) {
 | 
	
		
			
				|  |  | +            LuckDrawCount luckDrawCount = luckDrawCountService.get(orderByOrderNo.getUserId().longValue());
 | 
	
		
			
				|  |  | +            orderDetail.put("drawTimes", luckDrawCount==null? 0: luckDrawCount.getAvailableCount());
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |          return succeed(orderDetail);
 | 
	
		
			
				|  |  |      }
 |