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