|
@@ -1,6 +1,7 @@
|
|
package com.energy.manage.service.controller.homepage;
|
|
package com.energy.manage.service.controller.homepage;
|
|
|
|
|
|
import com.energy.manage.common.reponse.ResultResp;
|
|
import com.energy.manage.common.reponse.ResultResp;
|
|
|
|
+import com.energy.manage.service.config.annotations.UserLoginToken;
|
|
import com.energy.manage.service.controller.base.BaseServiceController;
|
|
import com.energy.manage.service.controller.base.BaseServiceController;
|
|
import com.energy.manage.service.service.homepage.HomePageService;
|
|
import com.energy.manage.service.service.homepage.HomePageService;
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.Api;
|
|
@@ -25,6 +26,7 @@ public class HomePageController extends BaseServiceController {
|
|
private HomePageService homePageService;
|
|
private HomePageService homePageService;
|
|
|
|
|
|
@ApiOperation("驾驶舱首页查询")
|
|
@ApiOperation("驾驶舱首页查询")
|
|
|
|
+ @UserLoginToken
|
|
@GetMapping("/queryStatistics")
|
|
@GetMapping("/queryStatistics")
|
|
public ResultResp queryStatistics(@RequestParam("codeNumber") String codeNumber,
|
|
public ResultResp queryStatistics(@RequestParam("codeNumber") String codeNumber,
|
|
@RequestParam("codeType") String codeType){
|
|
@RequestParam("codeType") String codeType){
|
|
@@ -33,6 +35,7 @@ public class HomePageController extends BaseServiceController {
|
|
|
|
|
|
|
|
|
|
@ApiOperation("驾驶舱首页查询操作记录")
|
|
@ApiOperation("驾驶舱首页查询操作记录")
|
|
|
|
+ @UserLoginToken
|
|
@GetMapping("/queryOptionRecords")
|
|
@GetMapping("/queryOptionRecords")
|
|
public ResultResp queryOptionRecords(@RequestParam("codeNumber") String codeNumber,
|
|
public ResultResp queryOptionRecords(@RequestParam("codeNumber") String codeNumber,
|
|
@RequestParam("codeType") String codeType){
|
|
@RequestParam("codeType") String codeType){
|