contracts/base/res_role.go
2023-04-21 17:36:35 +08:00

12 lines
277 B
Go

package base
type ResRole struct {
Uuid string `db:"uuid"`
ResUuid string `db:"resource_uuid"`
RoleUuid string `db:"role_uuid"`
UpdatedAt string `db:"updated_at"`
CreatedAt string `db:"created_at"`
}
type GetResRoles func(uuid string, roles ...string) []ResRole