|
@@ -19,10 +19,38 @@ func (c *workbenchCtl) CountDevice(ctx *gin.Context) {
|
|
|
ctx.JSON(http.StatusUnauthorized, util.NormalResponse(http.StatusUnauthorized, "", nil))
|
|
|
}
|
|
|
|
|
|
- device, err := service.WorkbenchService.CountDevice(value.(*middleware.JwtToken).TenantId)
|
|
|
+ devices, err := service.WorkbenchService.CountDevice(value.(*middleware.JwtToken).TenantId)
|
|
|
if err != nil {
|
|
|
ctx.JSON(http.StatusOK, err)
|
|
|
return
|
|
|
}
|
|
|
- ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, device))
|
|
|
+ ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, devices))
|
|
|
+}
|
|
|
+
|
|
|
+func (c *workbenchCtl) CountAlarm(ctx *gin.Context) {
|
|
|
+ value, isExist := ctx.Get(middleware.Authorization)
|
|
|
+ if !isExist || value == nil {
|
|
|
+ ctx.JSON(http.StatusUnauthorized, util.NormalResponse(http.StatusUnauthorized, "", nil))
|
|
|
+ }
|
|
|
+
|
|
|
+ alarms, err := service.WorkbenchService.CountAlarm(value.(*middleware.JwtToken).TenantId)
|
|
|
+ if err != nil {
|
|
|
+ ctx.JSON(http.StatusOK, err)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, alarms))
|
|
|
+}
|
|
|
+
|
|
|
+func (c *workbenchCtl) Aqi(ctx *gin.Context) {
|
|
|
+ value, isExist := ctx.Get(middleware.Authorization)
|
|
|
+ if !isExist || value == nil {
|
|
|
+ ctx.JSON(http.StatusUnauthorized, util.NormalResponse(http.StatusUnauthorized, "", nil))
|
|
|
+ }
|
|
|
+
|
|
|
+ alarms, err := service.WorkbenchService.CountAlarm(value.(*middleware.JwtToken).TenantId)
|
|
|
+ if err != nil {
|
|
|
+ ctx.JSON(http.StatusOK, err)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, alarms))
|
|
|
}
|