|  | @@ -25,8 +25,15 @@ public class InspectionItemPlanConclusionController extends BaseController {
 | 
	
		
			
				|  |  |      @GetMapping("/getPlanConclusion")
 | 
	
		
			
				|  |  |      @PreAuthorize("@pcs.hasPermissions('inspectionItemPlanConclusion/getPlanConclusion')")
 | 
	
		
			
				|  |  |      @ApiImplicitParams({@ApiImplicitParam(name = "planId", value = "日程id", required = true, dataType = "int")})
 | 
	
		
			
				|  |  | -    public HttpResponseResult<List<Map<String, String>>> getInfo(Long planId) {
 | 
	
		
			
				|  |  | +    public HttpResponseResult<List<Map<String, String>>> getPlanConclusion(Long planId) {
 | 
	
		
			
				|  |  | +        return succeed(InspectionItemPlanConclusionService.getPlanConclusion(planId));
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    @ApiOperation(value = "导出日程的巡查结果")
 | 
	
		
			
				|  |  | +    @GetMapping("/exportPlanConclusion")
 | 
	
		
			
				|  |  | +    @PreAuthorize("@pcs.hasPermissions('inspectionItemPlanConclusion/exportPlanConclusion')")
 | 
	
		
			
				|  |  | +    @ApiImplicitParams({@ApiImplicitParam(name = "planId", value = "日程id", required = true, dataType = "int")})
 | 
	
		
			
				|  |  | +    public HttpResponseResult<List<Map<String, String>>> exportPlanConclusion(Long planId) {
 | 
	
		
			
				|  |  |          return succeed(InspectionItemPlanConclusionService.getPlanConclusion(planId));
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  | -    
 | 
	
		
			
				|  |  |  }
 |