|  | @@ -48,13 +48,25 @@ public class TaskController extends BaseController {
 | 
	
		
			
				|  |  |       */
 | 
	
		
			
				|  |  |      @GetMapping("/halfHourTask")
 | 
	
		
			
				|  |  |      public HttpResponseResult<Boolean> halfHourTask() {
 | 
	
		
			
				|  |  | -        //统计学员第一次购买时间
 | 
	
		
			
				|  |  | -        studentTimeService.totalStudentTime();
 | 
	
		
			
				|  |  |          //会员卡到期提醒
 | 
	
		
			
				|  |  |          vipCardRecordService.pollExpireMsg();
 | 
	
		
			
				|  |  |          return succeed(true);
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +    /***
 | 
	
		
			
				|  |  | +     * 统计学员第一次购买时间
 | 
	
		
			
				|  |  | +     *
 | 
	
		
			
				|  |  | +     * @author liweifan
 | 
	
		
			
				|  |  | +     * @updateTime 2022/4/29 19:12
 | 
	
		
			
				|  |  | +     * @return: com.yonge.cooleshow.common.entity.HttpResponseResult<java.lang.Boolean>
 | 
	
		
			
				|  |  | +     */
 | 
	
		
			
				|  |  | +    @GetMapping("/studentFirstBuy")
 | 
	
		
			
				|  |  | +    public HttpResponseResult<Boolean> studentFirstBuy() {
 | 
	
		
			
				|  |  | +        //统计学员第一次购买时间
 | 
	
		
			
				|  |  | +        studentTimeService.totalStudentTime();
 | 
	
		
			
				|  |  | +        return succeed(true);
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |      /**
 | 
	
		
			
				|  |  |       * @Description: 当日陪练课未对老师评价(每晚9点,已评价不发)
 | 
	
		
			
				|  |  |       * @Author: cy
 |