notice_set_contoller.go 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. package controller
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "iot_manager_service/app/middleware"
  5. serviceUser "iot_manager_service/app/system/service"
  6. "iot_manager_service/app/warn/model"
  7. "iot_manager_service/app/warn/service"
  8. "iot_manager_service/util/common"
  9. "math"
  10. "net/http"
  11. "strconv"
  12. )
  13. var NoticeSet = new(noticeSetCtl)
  14. type noticeSetCtl struct {
  15. }
  16. func (c noticeSetCtl) List(ctx *gin.Context) {
  17. value, _ := ctx.Get(middleware.Authorization)
  18. claims := value.(*middleware.Claims)
  19. current, _ := strconv.Atoi(ctx.Query("current"))
  20. size, _ := strconv.Atoi(ctx.Query("size"))
  21. searchValue := ctx.Query("searchValue")
  22. if current == 0 {
  23. current = 1
  24. }
  25. if size <= 0 || size > 100 {
  26. size = 10
  27. }
  28. records, err := service.NoticeSetService.GetList(claims.TenantId, searchValue)
  29. if err != nil {
  30. ctx.JSON(http.StatusOK, err)
  31. return
  32. }
  33. pages := math.Ceil(float64(len(records)) / float64(size))
  34. rsp := model.ResposeNoticeSetRecords{
  35. Current: current,
  36. Size: size,
  37. Total: len(records),
  38. Pages: int(pages),
  39. Records: records,
  40. }
  41. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, rsp))
  42. }
  43. func (c noticeSetCtl) GetUserList(ctx *gin.Context) {
  44. current, _ := strconv.Atoi(ctx.Query("current"))
  45. size, _ := strconv.Atoi(ctx.Query("size"))
  46. account := ctx.Query("account")
  47. realName := ctx.Query("realName")
  48. if current == 0 {
  49. current = 1
  50. }
  51. if size <= 0 || size > 100 {
  52. size = 10
  53. }
  54. users, err := serviceUser.UserService.List(account, realName, current, size)
  55. if err != nil {
  56. ctx.JSON(http.StatusOK, err)
  57. return
  58. }
  59. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, users))
  60. }
  61. func (c noticeSetCtl) Detail(ctx *gin.Context) {
  62. ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, nil))
  63. }