feat:完善项目信息

This commit is contained in:
henry
2021-12-27 11:48:44 +08:00
parent 4926c5b765
commit 45b2e85cfd
23 changed files with 92 additions and 240 deletions

View File

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