Files
ArmedPolice/app/model/sys_role_auth.go

14 lines
205 B
Go
Raw Permalink Normal View History

2021-11-02 10:02:52 +08:00
package model
import (
2021-11-02 17:01:04 +08:00
"ArmedPolice/app/common/model"
2021-11-02 10:02:52 +08:00
)
type SysRoleAuth struct {
*model.SysRoleAuth
}
func NewSysRoleAuth() *SysRoleAuth {
return &SysRoleAuth{SysRoleAuth: model.NewSysRoleAuth()}
}