12 lines
217 B
Go
12 lines
217 B
Go
![]() |
package model
|
||
|
|
||
|
import "SciencesServer/app/common/model"
|
||
|
|
||
|
type SysDepartment struct {
|
||
|
*model.SysDepartment
|
||
|
}
|
||
|
|
||
|
func NewSysDepartment() *SysDepartment {
|
||
|
return &SysDepartment{SysDepartment: model.NewSysDepartment()}
|
||
|
}
|