mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-03 06:40:26 +08:00
32 lines
689 B
Go
32 lines
689 B
Go
package models
|
|
|
|
import (
|
|
_ "github.com/go-sql-driver/mysql"
|
|
"github.com/iwind/TeaGo/Tea"
|
|
"github.com/iwind/TeaGo/dbs"
|
|
)
|
|
|
|
type LogDAO dbs.DAO
|
|
|
|
func NewLogDAO() *LogDAO {
|
|
return dbs.NewDAO(&LogDAO{
|
|
DAOObject: dbs.DAOObject{
|
|
DB: Tea.Env,
|
|
Table: "edgeLogs",
|
|
Model: new(Log),
|
|
PkName: "id",
|
|
},
|
|
}).(*LogDAO)
|
|
}
|
|
|
|
var SharedLogDAO = NewLogDAO()
|
|
|
|
// 创建管理员日志
|
|
func (this *LogDAO) CreateAdminLog(adminId int, level string, description string, action string, ip string) error {
|
|
op := NewLogOperator()
|
|
op.AdminId, op.Level, op.Description, op.Action, op.Ip = adminId, level, description, action, ip
|
|
op.Type = LogTypeAdmin
|
|
_, err := this.Save(op)
|
|
return err
|
|
}
|