manholeController.go 982 B

12345678910111213141516171819202122232425262728293031323334353637
  1. package controller
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "iot_manager_service/app/operation/service"
  5. "iot_manager_service/util/common"
  6. "net/http"
  7. "strconv"
  8. )
  9. var Manhole = new(manholeCtl)
  10. type manholeCtl struct{}
  11. func (c *manholeCtl) HistoryList(ctx *gin.Context) {
  12. id, _ := strconv.Atoi(ctx.Query("id"))
  13. queryStartDate := ctx.Query("queryStartDate")
  14. queryEndDate := ctx.Query("queryEndDate")
  15. queryType := ctx.Query("queryType")
  16. record, err := service.AepCallbackRecordService.GetHistoryList(id, queryStartDate, queryEndDate, queryType)
  17. if err != nil {
  18. ctx.JSON(http.StatusOK, err)
  19. return
  20. }
  21. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, record))
  22. }
  23. func (c *manholeCtl) LiveData(ctx *gin.Context) {
  24. id, _ := strconv.Atoi(ctx.Query("id"))
  25. record, err := service.AepCallbackRecordService.GetByDeviceId(id)
  26. if err != nil {
  27. ctx.JSON(http.StatusOK, err)
  28. return
  29. }
  30. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, record))
  31. }