Files
cas_tt_cloud_backend/app/api/admin/model/sys_deparement.go

12 lines
217 B
Go
Raw Normal View History

2021-09-28 11:47:19 +08:00
package model
import "SciencesServer/app/common/model"
type SysDepartment struct {
*model.SysDepartment
}
func NewSysDepartment() *SysDepartment {
return &SysDepartment{SysDepartment: model.NewSysDepartment()}
}