对cid运行添加上次成功失败信息

This commit is contained in:
junleea 2025-10-02 21:25:11 +08:00
parent 106e27f457
commit c75dd8b95e
1 changed files with 3 additions and 0 deletions

View File

@ -2,6 +2,7 @@ package handler
import (
"github.com/gin-gonic/gin"
"log"
"net/http"
"videoplayer/proto"
"videoplayer/service"
@ -178,7 +179,9 @@ func RunSQLHandler(c *gin.Context) {
resp.Data = res
}
}
log.Println("run sql resp, sql is:", req.SQL)
c.JSON(http.StatusOK, resp)
return
}
func GetDBTableDescHandler(c *gin.Context) {