| 123456789101112131415 |
- package parking
- import (
- "strconv"
- "github.com/gin-gonic/gin"
- "wails-app/internal/model/common/response"
- "wails-app/internal/service/uhf"
- )
- func GetChannelEvents(c *gin.Context) {
- after, _ := strconv.ParseInt(c.Query("after"), 10, 64)
- events := uhf.GetChannelEvents(after)
- response.OkWithData(events, c)
- }
|