问题单修复

This commit is contained in:
zhuxinyu
2023-04-26 20:14:07 +08:00
parent dc528e58cf
commit 499c920196
10 changed files with 122 additions and 6 deletions

View File

@@ -104,7 +104,7 @@ public class OperationContrController extends BaseController {
@PostMapping("/getNewDeviceRunStatistics")
@ApiOperation("获取终端运行统计_新")
@ApiImplicitParam(name = "deviceInfoParam", value = "实体", required = true)
public HttpResult<Page<LineFlowMealDetailVO>> getNewDeviceRunStatistics(@RequestBody PqsParam deviceInfoParam){
public HttpResult<Page<LineFlowMealDetailVO>> getNewDeviceRunStatistics(@RequestBody PqsParam deviceInfoParam) {
String methodDescribe = getMethodDescribe("getDeviceRunStatistics");
if (deviceInfoParam.getDeptIndex() == null) {
DeviceInfoParam param = new DeviceInfoParam(RequestUtil.getDeptIndex(),null);

View File

@@ -149,6 +149,10 @@ public class LogManageServiceImpl implements LogManageService {
list.add(eventLogVO);
}
page.setTotal(p.getTotal());
page.setCurrent(p.getCurrent());
//当前页数据
page.setRecords(list);
}
return page;