|
@@ -4,6 +4,7 @@ package com.gyee.runeconomy.controller.monitor;/*
|
|
|
*/
|
|
|
|
|
|
import com.gyee.common.model.StringUtils;
|
|
|
+import com.gyee.runeconomy.dto.AjaxResult;
|
|
|
import com.gyee.runeconomy.dto.R;
|
|
|
import com.gyee.runeconomy.dto.ResultMsg;
|
|
|
import com.gyee.runeconomy.service.monitor.MatrixService;
|
|
@@ -16,6 +17,7 @@ import org.springframework.web.bind.annotation.RequestParam;
|
|
|
import org.springframework.web.bind.annotation.ResponseBody;
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
+import java.util.HashMap;
|
|
|
import java.util.Map;
|
|
|
|
|
|
@Controller
|
|
@@ -84,5 +86,27 @@ public class MatrixController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 基础矩阵
|
|
|
+ *
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @GetMapping("/sbxx")
|
|
|
+ @ResponseBody
|
|
|
+ @ApiOperation(value = "矩阵设备信息", notes = "矩阵设备信息")
|
|
|
+ public AjaxResult basic(@RequestParam(value = "wtid", required = true) String wtid) throws Exception {
|
|
|
+
|
|
|
+ Map<String,String> resultList = new HashMap<>();
|
|
|
+ if (com.gyee.runeconomy.util.StringUtils.notEmp(wtid)) {
|
|
|
+ resultList = matrixService.equipment(wtid);
|
|
|
+ }
|
|
|
+
|
|
|
+ if (null != resultList) {
|
|
|
+ return AjaxResult.successData(200, resultList);
|
|
|
+ } else {
|
|
|
+ return AjaxResult.error(500, "操作失败");
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
|
|
|
}
|