lightRecordController.go 696 B

12345678910111213141516171819202122232425262728293031
  1. package controller
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "iot_manager_service/app/record/service"
  5. "iot_manager_service/util"
  6. "net/http"
  7. "strconv"
  8. )
  9. var LightRecord = new(lightRecordCtl)
  10. type lightRecordCtl struct{}
  11. func (c *lightRecordCtl) List(ctx *gin.Context) {
  12. searchValue := ctx.Query("searchValue")
  13. start := ctx.Query("queryStartTime")
  14. end := ctx.Query("queryEndTime")
  15. groupId := ctx.Query("groupId")
  16. id := -1
  17. if groupId != "" {
  18. id, _ = strconv.Atoi(groupId)
  19. }
  20. records, err := service.LightRecordService.List(searchValue, start, end, id)
  21. if err != nil {
  22. ctx.JSON(http.StatusOK, err)
  23. return
  24. }
  25. ctx.JSON(http.StatusOK, util.SuccessResponse(util.Succeeded, records))
  26. }