系统日志服务写入

This commit is contained in:
ayflying
2025-02-28 14:21:48 +08:00
parent e45e8c7572
commit fab208c121
5 changed files with 374 additions and 0 deletions

12
api/admin/v1/log.go Normal file
View File

@@ -0,0 +1,12 @@
package v1
import (
"github.com/ayflying/utility_go/internal/model/entity"
"github.com/gogf/gf/v2/frame/g"
)
type SystemLog struct {
entity.SystemLog
Data g.Map `json:"data" dc:"操作数据"`
//Post g.Map `json:"post" dc:"提交数据"`
}