log watcher is done
CI / changes (push) Successful in 5s
CI / docker-bff (push) Failing after 4s
CI / docker-product (push) Failing after 1s
CI / docker-admin (push) Failing after 1s
CI / docker-user (push) Failing after 1s

This commit is contained in:
2026-08-21 10:06:06 +08:00
parent f49d155373
commit dd67efe0d5
12 changed files with 259 additions and 23 deletions
+7 -4
View File
@@ -1,6 +1,9 @@
package model
import "lone-services/pkg/modelbase"
import (
"lone-services/pkg/modelbase"
"lone-services/services/lonelog/internal/dao"
)
type ActionModel struct {
modelbase.Base
@@ -15,6 +18,6 @@ func (m ActionModel) Init() ActionModel {
return m
}
//func (m ActionModel) Create(data *dao.Admin) error {
// return m.Base.Create(data)
//}
func (m ActionModel) Create(data *dao.ActionLog) error {
return m.Base.Create(data)
}