|
@@ -1,6 +1,7 @@
|
|
|
package com.gyee.runeconomy.controller;
|
|
|
|
|
|
|
|
|
+import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
import com.gyee.runeconomy.dto.R;
|
|
|
import com.gyee.runeconomy.dto.ResultMsg;
|
|
|
import com.gyee.runeconomy.model.auto.ProEconEquipmentInfoDayTop;
|
|
@@ -10,7 +11,6 @@ import io.swagger.annotations.ApiOperation;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
-
|
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
@@ -54,7 +54,7 @@ public class ProEconEquipmentInfoDayTopController {
|
|
|
@RequestParam(value = "pageNum", required = true) Integer pageNum,
|
|
|
@RequestParam(value = "pageSize", required = true) Integer pageSize){
|
|
|
|
|
|
- List<ProEconEquipmentInfoDayTop> list = proEconEquipmentInfoDayTopService.getEquipmentInfoDayTopList(companyId, windpowerstationId, types, staType,date,pageNum,pageSize);
|
|
|
+ IPage<ProEconEquipmentInfoDayTop> list = proEconEquipmentInfoDayTopService.getEquipmentInfoDayTopList(companyId, windpowerstationId, types, staType,date,pageNum,pageSize);
|
|
|
if (null != list) {
|
|
|
return R.data(ResultMsg.ok(list));
|
|
|
} else {
|