change layout
CI / changes (push) Successful in 5s
CI / docker-bff (push) Failing after 7s
CI / docker-product (push) Failing after 5s
CI / docker-admin (push) Failing after 4s
CI / docker-user (push) Failing after 6s

This commit is contained in:
2026-08-20 15:41:44 +08:00
parent 57e04be304
commit be8f89f449
176 changed files with 7009 additions and 4498 deletions
+20
View File
@@ -0,0 +1,20 @@
package model
import "lone-services/pkg/modelbase"
type ActionModel struct {
modelbase.Base
}
func (m ActionModel) TableName() string {
return modelbase.Prefix() + "admin_action"
}
func (m ActionModel) Init() ActionModel {
m.Table = m.TableName()
return m
}
//func (m ActionModel) Create(data *dao.Admin) error {
// return m.Base.Create(data)
//}