Files

12 lines
158 B
Go
Raw Normal View History

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