123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- package handler
- import (
- "cicv-data-closedloop/amd64/web-server/entity"
- commonEntity "cicv-data-closedloop/common/entity"
- "github.com/gin-gonic/gin"
- "net/http"
- )
- type SaveMonitorRequest struct {
- CpuTotal string
- MemoryTotal string
- }
- func SaveMonitor(c *gin.Context) {
-
-
-
-
-
-
-
-
-
-
- var result []entity.Record
-
-
-
-
-
-
-
-
-
-
- c.JSON(http.StatusOK, commonEntity.Response{
- Code: 200,
- Msg: "分页查询成功。",
- Data: result,
- })
- }
|