Files
2021-10-15 15:06:02 +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{}
}