二级页面
This commit is contained in:
parent
62bad35573
commit
277e8916c6
|
|
@ -226,7 +226,7 @@ public class LargeScreenController extends BaseController {
|
|||
public AjaxResult getDevNum(DevInfoVo devInfoVo) {
|
||||
startPage();
|
||||
List<DevInfoVo> list = devInfoMapper.getDevNumList(devInfoVo);
|
||||
return AjaxResult.success(list);
|
||||
return AjaxResult.success(getDataTable(list));
|
||||
}
|
||||
|
||||
@ApiOperation("上架装备数二级页面")
|
||||
|
|
@ -234,7 +234,7 @@ public class LargeScreenController extends BaseController {
|
|||
public AjaxResult getDevUpNum(DevInfoVo devInfoVo) {
|
||||
startPage();
|
||||
List<DevInfoVo> list = devInfoMapper.getDevUpNumList(devInfoVo);
|
||||
return AjaxResult.success(list);
|
||||
return AjaxResult.success(getDataTable(list));
|
||||
}
|
||||
|
||||
@ApiOperation("装备总类型数二级页面")
|
||||
|
|
@ -242,7 +242,7 @@ public class LargeScreenController extends BaseController {
|
|||
public AjaxResult getDevTypeNum(DevInfoVo devInfoVo) {
|
||||
startPage();
|
||||
List<DevInfoVo> list = devInfoMapper.getDevTypeNumList(devInfoVo);
|
||||
return AjaxResult.success(list);
|
||||
return AjaxResult.success(getDataTable(list));
|
||||
}
|
||||
|
||||
@ApiOperation("保养告警二级页面")
|
||||
|
|
@ -250,7 +250,7 @@ public class LargeScreenController extends BaseController {
|
|||
public AjaxResult getDevQcWarningNum(DevInfoVo devInfoVo) {
|
||||
startPage();
|
||||
List<DevInfoVo> list = devInfoMapper.getDevQcWarningNumList(devInfoVo);
|
||||
return AjaxResult.success(list);
|
||||
return AjaxResult.success(getDataTable(list));
|
||||
}
|
||||
|
||||
@ApiOperation("在租赁种类二级页面")
|
||||
|
|
@ -258,7 +258,7 @@ public class LargeScreenController extends BaseController {
|
|||
public AjaxResult getMaTypeLeasingNum(DevInfoVo devInfoVo) {
|
||||
startPage();
|
||||
List<DevInfoVo> list = devInfoMapper.getMaTypeLeasingNumList(devInfoVo);
|
||||
return AjaxResult.success(list);
|
||||
return AjaxResult.success(getDataTable(list));
|
||||
}
|
||||
|
||||
@ApiOperation("在租赁装备数二级页面")
|
||||
|
|
@ -266,7 +266,7 @@ public class LargeScreenController extends BaseController {
|
|||
public AjaxResult getDevLeasingNum(DevInfoVo devInfoVo) {
|
||||
startPage();
|
||||
List<DevInfoVo> list = devInfoMapper.getDevLeasingNumList(devInfoVo);
|
||||
return AjaxResult.success(list);
|
||||
return AjaxResult.success(getDataTable(list));
|
||||
}
|
||||
|
||||
// @ApiOperation("订单数据")
|
||||
|
|
|
|||
Loading…
Reference in New Issue