Files
ArmedPolice/app/model/sys_deparement.go

12 lines
214 B
Go
Raw Normal View History

2021-11-02 10:02:52 +08:00
package model
import "TenantServe/app/common/model"
type SysDepartment struct {
*model.SysDepartment
}
func NewSysDepartment() *SysDepartment {
return &SysDepartment{SysDepartment: model.NewSysDepartment()}
}