contracts/base/res_role.go

10 lines
212 B
Go
Raw Normal View History

2023-04-12 16:56:55 +08:00
package base
type ResRole struct {
Uuid string `db:"id"`
ResUuid string `db:"resource_uuid"`
RoleUuid string `db:"role_uuid"`
UpdatedAt string `db:"updated_at"`
CreatedAt string `db:"created_at"`
}