Files
cas_tt_cloud_backend/app/api/admin/model/sys_deparement.go
2022-01-05 11:29:27 +08:00

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