12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- package controller
- import (
- "github.com/gin-gonic/gin"
- "iot_manager_service/app/middleware"
- serviceUser "iot_manager_service/app/system/service"
- "iot_manager_service/app/warn/model"
- "iot_manager_service/app/warn/service"
- "iot_manager_service/util/common"
- "math"
- "net/http"
- "strconv"
- )
- var NoticeSet = new(noticeSetCtl)
- type noticeSetCtl struct {
- }
- func (c noticeSetCtl) List(ctx *gin.Context) {
- value, _ := ctx.Get(middleware.Authorization)
- claims := value.(*middleware.Claims)
- current, _ := strconv.Atoi(ctx.Query("current"))
- size, _ := strconv.Atoi(ctx.Query("size"))
- searchValue := ctx.Query("searchValue")
- if current == 0 {
- current = 1
- }
- if size <= 0 || size > 100 {
- size = 10
- }
- records, err := service.NoticeSetService.GetList(claims.TenantId, searchValue)
- if err != nil {
- ctx.JSON(http.StatusOK, err)
- return
- }
- pages := math.Ceil(float64(len(records)) / float64(size))
- rsp := model.ResposeNoticeSetRecords{
- Current: current,
- Size: size,
- Total: len(records),
- Pages: int(pages),
- Records: records,
- }
- ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, rsp))
- }
- func (c noticeSetCtl) GetUserList(ctx *gin.Context) {
- current, _ := strconv.Atoi(ctx.Query("current"))
- size, _ := strconv.Atoi(ctx.Query("size"))
- account := ctx.Query("account")
- realName := ctx.Query("realName")
- if current == 0 {
- current = 1
- }
- if size <= 0 || size > 100 {
- size = 10
- }
- users, err := serviceUser.UserService.List(account, realName, current, size)
- if err != nil {
- ctx.JSON(http.StatusOK, err)
- return
- }
- ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, users))
- }
- func (c noticeSetCtl) Detail(ctx *gin.Context) {
- ctx.JSON(http.StatusOK, common.SuccessResponse(common.Succeeded, nil))
- }
|