综合查询-设备管理

This commit is contained in:
liang.chao 2024-12-18 13:57:40 +08:00
parent f1acf36e7a
commit c95b9c3304
4 changed files with 4 additions and 4 deletions

View File

@ -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));

View File

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

View File

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

View File

@ -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);
}