feat:完善项目信息

This commit is contained in:
henry
2022-01-13 20:37:05 +08:00
parent 7492c67378
commit 97fd9ab278
11 changed files with 367 additions and 15 deletions

View File

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