Files
2022-01-05 11:29:27 +08:00

14 lines
156 B
Go

package model
import (
model2 "SciencesServer/app/common/model"
)
type SysLog struct {
*model2.SysLog
}
func NewSysLog() *SysLog {
return &SysLog{}
}