garbageController.go 719 B

1234567891011121314151617181920212223242526272829
  1. package controller
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "iot_manager_service/app/middleware"
  5. "iot_manager_service/app/operation/service"
  6. "iot_manager_service/util/common"
  7. "net/http"
  8. )
  9. var Garbage = new(garbageCtl)
  10. type garbageCtl struct{}
  11. func (c *garbageCtl) GarbageList(ctx *gin.Context) {
  12. value, _ := ctx.Get(middleware.Authorization)
  13. claims := value.(*middleware.Claims)
  14. records, err := service.GarbageService.GarbageList(claims.TenantId)
  15. if err != nil {
  16. ctx.JSON(http.StatusOK, err)
  17. return
  18. }
  19. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, records))
  20. }
  21. func (c *garbageCtl) CountList(ctx *gin.Context) {
  22. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, nil))
  23. }