handleHistoryController.go 857 B

1234567891011121314151617181920212223242526272829303132333435
  1. package controller
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "iot_manager_service/app/service"
  5. "iot_manager_service/app/utils"
  6. "net/http"
  7. "strconv"
  8. )
  9. // 一键报警服务表管理对象
  10. var HandleHistory = new(handleHistoryCtl)
  11. type handleHistoryCtl struct{}
  12. func (c *handleHistoryCtl) List(ctx *gin.Context) {
  13. handleContent := ctx.Query("handleContent")
  14. operationType := ctx.Query("operationType")
  15. moduleType := ctx.Query("moduleType")
  16. current, _ := strconv.Atoi(ctx.Query("current"))
  17. size, _ := strconv.Atoi(ctx.Query("size"))
  18. if current == 0 {
  19. current = 1
  20. }
  21. if size <= 0 || size > 100 {
  22. size = 10
  23. }
  24. list, err := service.OperationHisService.List(handleContent, operationType, moduleType, current, size)
  25. if err != nil {
  26. ctx.JSON(http.StatusOK, err)
  27. return
  28. }
  29. ctx.JSON(http.StatusOK, utils.SuccessResponse(utils.Succeeded, list))
  30. }