| 
					
				 | 
			
			
				@@ -11,6 +11,7 @@ import com.jjt.common.core.domain.AjaxResult; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import com.jjt.common.core.page.TableDataInfo; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import io.swagger.annotations.Api; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import io.swagger.annotations.ApiOperation; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+import org.springframework.security.access.prepost.PreAuthorize; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import org.springframework.web.bind.annotation.GetMapping; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import org.springframework.web.bind.annotation.PathVariable; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import org.springframework.web.bind.annotation.RequestMapping; 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -81,17 +82,17 @@ public class HlScoreController extends BaseController { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         return success(base); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-//    /** 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-//     * 查询健康度分数记录列表 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-//     */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-//    @ApiOperation("查询健康度分数记录列表") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-//    @PreAuthorize("@ss.hasPermi('hl:hlScore:list')") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-//    @GetMapping("/list") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-//    public TableDataInfo list(HlScore hlScore) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-//        startPage(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-//        List<HlScore> list = hlScoreService.selectHlScoreList(hlScore); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-//        return getDataTable(list); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-//    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    /** 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+     * 查询健康度分数记录列表 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+     */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    @ApiOperation("查询健康度分数记录列表") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    @PreAuthorize("@ss.hasPermi('hl:hlScore:list')") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    @GetMapping("/list") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    public TableDataInfo list(HlScore hlScore) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        startPage(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        List<HlScore> list = hlScoreService.selectHlScoreList(hlScore); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        return getDataTable(list); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 // 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 //    /** 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 //     * 导出健康度分数记录列表 
			 |