|
@@ -48,3 +48,39 @@ func (c *workbenchCtl) Aqi(ctx *gin.Context) {
|
|
|
}
|
|
|
ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, alarms))
|
|
|
}
|
|
|
+
|
|
|
+func (c *workbenchCtl) CountJobTodo(ctx *gin.Context) {
|
|
|
+ value, _ := ctx.Get(middleware.Authorization)
|
|
|
+ claims := value.(*middleware.Claims)
|
|
|
+
|
|
|
+ alarms, err := service.WorkbenchService.CountJobTodo(claims.TenantId)
|
|
|
+ if err != nil {
|
|
|
+ ctx.JSON(http.StatusOK, err)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, alarms))
|
|
|
+}
|
|
|
+
|
|
|
+func (c *workbenchCtl) Notification(ctx *gin.Context) {
|
|
|
+ value, _ := ctx.Get(middleware.Authorization)
|
|
|
+ claims := value.(*middleware.Claims)
|
|
|
+
|
|
|
+ alarms, err := service.WorkbenchService.Notification(claims.TenantId)
|
|
|
+ if err != nil {
|
|
|
+ ctx.JSON(http.StatusOK, err)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, alarms))
|
|
|
+}
|
|
|
+
|
|
|
+func (c *workbenchCtl) LightRate(ctx *gin.Context) {
|
|
|
+ value, _ := ctx.Get(middleware.Authorization)
|
|
|
+ claims := value.(*middleware.Claims)
|
|
|
+ //queryType=month&startDate=2022-09-01&endDate=2022-10-04
|
|
|
+ alarms, err := service.WorkbenchService.LightRate(claims.TenantId)
|
|
|
+ if err != nil {
|
|
|
+ ctx.JSON(http.StatusOK, err)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, alarms))
|
|
|
+}
|