feat:完善入驻信息管理

This commit is contained in:
henry
2021-12-06 16:24:31 +08:00
parent 162537e52d
commit 3989befe92
7 changed files with 164 additions and 38 deletions

View File

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