Compare commits
	
		
			2 Commits
		
	
	
		
			6cb78e0749
			...
			9435687ae9
		
	
	| Author | SHA1 | Date | 
|---|---|---|
| 
							
							
								
								 | 
						9435687ae9 | |
| 
							
							
								
								 | 
						c95b9c3304 | 
| 
						 | 
				
			
			@ -27,7 +27,7 @@ public class ComprehensiveController extends BaseController {
 | 
			
		|||
    private DevInfoService devInfoService;
 | 
			
		||||
    @ApiOperation(value = "综合查询-装备信息")
 | 
			
		||||
    @GetMapping("/devList")
 | 
			
		||||
    public AjaxResult getDevList(DevInfo devInfo) {
 | 
			
		||||
    public AjaxResult getDevList(DevInfoVo devInfo) {
 | 
			
		||||
        startPage();
 | 
			
		||||
        List<DevInfoVo> list = devInfoService.getDevList(devInfo);
 | 
			
		||||
        return AjaxResult.success(getDataTable(list));
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -188,6 +188,6 @@ public interface DevInfoMapper {
 | 
			
		|||
 | 
			
		||||
    List<DevInfoVo> getTagDevList(DevInfoVo devInfoVo);
 | 
			
		||||
 | 
			
		||||
    List<DevInfoVo> getDevList(DevInfo devInfo);
 | 
			
		||||
    List<DevInfoVo> getDevList(DevInfoVo devInfo);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -111,5 +111,5 @@ public interface DevInfoService {
 | 
			
		|||
 | 
			
		||||
    List<DevInfoVo> getTagDevList(DevInfoVo devInfoVo);
 | 
			
		||||
 | 
			
		||||
    List<DevInfoVo> getDevList(DevInfo devInfo);
 | 
			
		||||
    List<DevInfoVo> getDevList(DevInfoVo devInfo);
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -760,7 +760,7 @@ public class DevInfoServiceImpl implements DevInfoService {
 | 
			
		|||
    }
 | 
			
		||||
 | 
			
		||||
    @Override
 | 
			
		||||
    public List<DevInfoVo> getDevList(DevInfo devInfo) {
 | 
			
		||||
    public List<DevInfoVo> getDevList(DevInfoVo devInfo) {
 | 
			
		||||
        return devInfoMapper.getDevList(devInfo);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue