zky_mandate/internal/app/system/model/do/sys_role_scope.go

20 lines
765 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package do
import (
"github.com/gogf/gf/v2/frame/g"
)
// SysRoleScope is the golang structure of table sys_role_scope for DAO operations like Where/Data.
type SysRoleScope struct {
g.Meta `orm:"table:sys_role_scope, do:true"`
Id interface{} // ID
RoleId interface{} // 角色id
MenuId interface{} // api接口id
DataScope interface{} // 数据范围1全部数据权限 2自定数据权限 3本部门数据权限 4本部门及以下数据权限
DeptIds interface{} // 扩展数据
}