|  | @@ -11,6 +11,7 @@ import com.ym.mec.common.controller.BaseController;
 | 
	
		
			
				|  |  |  import com.ym.mec.common.entity.HttpResponseResult;
 | 
	
		
			
				|  |  |  import io.swagger.annotations.Api;
 | 
	
		
			
				|  |  |  import io.swagger.annotations.ApiOperation;
 | 
	
		
			
				|  |  | +import org.apache.commons.lang3.StringUtils;
 | 
	
		
			
				|  |  |  import org.springframework.beans.factory.annotation.Autowired;
 | 
	
		
			
				|  |  |  import org.springframework.web.bind.annotation.GetMapping;
 | 
	
		
			
				|  |  |  import org.springframework.web.bind.annotation.PostMapping;
 | 
	
	
		
			
				|  | @@ -97,6 +98,9 @@ public class CourseScheduleTeacherSalaryController extends BaseController {
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |          queryInfo.setTeacherId(sysUser.getId());
 | 
	
		
			
				|  |  |          queryInfo.setCourseStatus(CourseStatusEnum.OVER);
 | 
	
		
			
				|  |  | +        if(StringUtils.isBlank(queryInfo.getStartDay())){
 | 
	
		
			
				|  |  | +            queryInfo.setStartDay("2021-03-01");
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  |          return succeed(courseScheduleTeacherSalaryService.queryTeacherIncomeList(queryInfo));
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  |  
 |