删除调试信息

This commit is contained in:
lzh 2025-06-11 16:55:46 +08:00
parent 949be8efaa
commit b8355c0e27

View File

@ -1,8 +1,6 @@
package governance
import (
"encoding/json"
"fmt"
"strconv"
"github.com/gin-gonic/gin"
@ -79,8 +77,6 @@ func Edit(ctx *gin.Context) {
return
}
user := login.GetUserInfoFromC(ctx)
b, _ := json.Marshal(user)
fmt.Println("用户信息", string(b))
req.Operator = user.Name
req.OperatorId = int32(user.ID)
resp, err := service.GovernanceProvider.Edit(ctx, &req)