feat:完善入驻信息管理
This commit is contained in:
11
app/api/enterprise/model/sys_identity.go
Normal file
11
app/api/enterprise/model/sys_identity.go
Normal file
@ -0,0 +1,11 @@
|
||||
package model
|
||||
|
||||
import "SciencesServer/app/common/model"
|
||||
|
||||
type SysIdentity struct {
|
||||
*model.SysIdentity
|
||||
}
|
||||
|
||||
func NewSysIdentity() *SysIdentity {
|
||||
return &SysIdentity{model.NewSysIdentity()}
|
||||
}
|
11
app/api/enterprise/model/user_company.go
Normal file
11
app/api/enterprise/model/user_company.go
Normal file
@ -0,0 +1,11 @@
|
||||
package model
|
||||
|
||||
import "SciencesServer/app/common/model"
|
||||
|
||||
type UserCompany struct {
|
||||
*model.UserCompany
|
||||
}
|
||||
|
||||
func NewUserCompany() *UserCompany {
|
||||
return &UserCompany{model.NewUserCompany()}
|
||||
}
|
Reference in New Issue
Block a user