|  | @@ -14,6 +14,7 @@ import org.apache.commons.lang3.StringUtils;
 | 
	
		
			
				|  |  |  import org.springframework.web.bind.annotation.*;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  import javax.annotation.Resource;
 | 
	
		
			
				|  |  | +import javax.validation.Valid;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  @Api(tags = "乐队指导训练营活动")
 | 
	
		
			
				|  |  |  @RestController
 | 
	
	
		
			
				|  | @@ -46,7 +47,7 @@ public class TempDirectorTrainingCampController extends BaseController {
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      @ApiOperation(value="训练营报名")
 | 
	
		
			
				|  |  |      @PostMapping(value = "/applyCamp")
 | 
	
		
			
				|  |  | -    public HttpResponseResult<Integer> applyCamp(@RequestBody TempDirectorTrainingCampDetailWrapper.ApplyCamp applyCamp){
 | 
	
		
			
				|  |  | +    public HttpResponseResult<Integer> applyCamp(@Valid @RequestBody TempDirectorTrainingCampDetailWrapper.ApplyCamp applyCamp){
 | 
	
		
			
				|  |  |          return succeed(tempDirectorTrainingCampDetailService.applyCamp(applyCamp));
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  |  
 |