Compare commits

..

No commits in common. "9435687ae9980bd969a5460e93081f953b3a6dfc" and "6cb78e07491b5197142a50d0e47fc785b761ec68" have entirely different histories.

4 changed files with 4 additions and 4 deletions

View File

@ -27,7 +27,7 @@ public class ComprehensiveController extends BaseController {
private DevInfoService devInfoService; private DevInfoService devInfoService;
@ApiOperation(value = "综合查询-装备信息") @ApiOperation(value = "综合查询-装备信息")
@GetMapping("/devList") @GetMapping("/devList")
public AjaxResult getDevList(DevInfoVo devInfo) { public AjaxResult getDevList(DevInfo devInfo) {
startPage(); startPage();
List<DevInfoVo> list = devInfoService.getDevList(devInfo); List<DevInfoVo> list = devInfoService.getDevList(devInfo);
return AjaxResult.success(getDataTable(list)); return AjaxResult.success(getDataTable(list));

View File

@ -188,6 +188,6 @@ public interface DevInfoMapper {
List<DevInfoVo> getTagDevList(DevInfoVo devInfoVo); List<DevInfoVo> getTagDevList(DevInfoVo devInfoVo);
List<DevInfoVo> getDevList(DevInfoVo devInfo); List<DevInfoVo> getDevList(DevInfo devInfo);
} }

View File

@ -111,5 +111,5 @@ public interface DevInfoService {
List<DevInfoVo> getTagDevList(DevInfoVo devInfoVo); List<DevInfoVo> getTagDevList(DevInfoVo devInfoVo);
List<DevInfoVo> getDevList(DevInfoVo devInfo); List<DevInfoVo> getDevList(DevInfo devInfo);
} }

View File

@ -760,7 +760,7 @@ public class DevInfoServiceImpl implements DevInfoService {
} }
@Override @Override
public List<DevInfoVo> getDevList(DevInfoVo devInfo) { public List<DevInfoVo> getDevList(DevInfo devInfo) {
return devInfoMapper.getDevList(devInfo); return devInfoMapper.getDevList(devInfo);
} }