12 lines
190 B
Go
12 lines
190 B
Go
package model
|
|
|
|
import "SciencesServer/app/common/model"
|
|
|
|
type UserCompany struct {
|
|
*model.UserCompany
|
|
}
|
|
|
|
func NewUserCompany() *UserCompany {
|
|
return &UserCompany{model.NewUserCompany()}
|
|
}
|