lightRecordController.go 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. package controller
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "iot_manager_service/app/record/dao"
  5. "iot_manager_service/app/record/service"
  6. "iot_manager_service/util/common"
  7. "math"
  8. "net/http"
  9. "strconv"
  10. )
  11. var LightRecord = new(lightRecordCtl)
  12. type lightRecordCtl struct{}
  13. type LightRecordRespose struct {
  14. Records []dao.LightRecord `json:"records"` //记录列表
  15. Current int `json:"current"` //当前分页
  16. Size int `json:"size"` //每页数量
  17. Total int `json:"total"` //总数
  18. Pages int `json:"pages"` //总页数
  19. }
  20. func (c *lightRecordCtl) List(ctx *gin.Context) {
  21. searchValue := ctx.Query("searchValue")
  22. start := ctx.Query("queryStartTime")
  23. end := ctx.Query("queryEndTime")
  24. groupId := ctx.Query("groupId")
  25. current, _ := strconv.Atoi(ctx.Query("current"))
  26. size, _ := strconv.Atoi(ctx.Query("size"))
  27. if current == 0 {
  28. current = 1
  29. }
  30. if size <= 0 || size > 100 {
  31. size = 10
  32. }
  33. id := -1
  34. if groupId != "" {
  35. id, _ = strconv.Atoi(groupId)
  36. }
  37. records, total, err := service.LightRecordService.List(searchValue, start, end, id, current, size)
  38. if err != nil {
  39. ctx.JSON(http.StatusOK, err)
  40. return
  41. }
  42. pages := math.Ceil(float64(len(records)) / float64(size))
  43. rsp := LightRecordRespose{
  44. Current: current,
  45. Size: size,
  46. Total: int(total),
  47. Pages: int(pages),
  48. Records: records,
  49. }
  50. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, rsp))
  51. }
  52. func (c *lightRecordCtl) Detail(ctx *gin.Context) {
  53. id, _ := strconv.Atoi(ctx.Query("id"))
  54. record, err := service.LightRecordService.Detail(id)
  55. if err != nil {
  56. ctx.JSON(http.StatusOK, err)
  57. return
  58. }
  59. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, record))
  60. }