Files
cas_tt_cloud_backend/app/api/model/sys_deparement.go
2021-09-28 11:51:15 +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()}
}