feat:完善网站信息,增加创新服务数据模型

This commit is contained in:
henry
2021-12-20 13:53:13 +08:00
parent 35e00f16db
commit a66d120b3f
7 changed files with 133 additions and 2 deletions

View File

@ -0,0 +1,11 @@
package model
import "SciencesServer/app/common/model"
type SysAbout struct {
*model.SysAbout
}
func NewSysAbout() *SysAbout {
return &SysAbout{model.NewSysAbout()}
}