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