Files

14 lines
156 B
Go
Raw Normal View History

2021-09-28 11:47:19 +08:00
package model
import (
model2 "SciencesServer/app/common/model"
)
type SysLog struct {
*model2.SysLog
}
func NewSysLog() *SysLog {
return &SysLog{}
}