feat:完善入驻信息管理

This commit is contained in:
henry
2021-12-02 18:05:53 +08:00
parent 5c4d883c97
commit 199e6f0669
23 changed files with 626 additions and 55 deletions

View File

@ -0,0 +1,14 @@
package model
import (
"SciencesServer/app/common/model"
)
// ManageAgent 经纪人入驻数据信息
type ManageAgent struct {
*model.ManageAgent
}
func NewManageAgent() *ManageAgent {
return &ManageAgent{model.NewManageAgent()}
}

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()}
}

View File

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

View File

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

View File

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