Compare commits

...

2 Commits

Author SHA1 Message Date
liang.chao 9435687ae9 Merge remote-tracking branch 'origin/master' 2024-12-18 13:57:52 +08:00
liang.chao c95b9c3304 综合查询-设备管理 2024-12-18 13:57:40 +08:00
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);
}