From d78391e1ee14fbe7264c392d3116fe46921ee526 Mon Sep 17 00:00:00 2001 From: AdisakKanthawilang Date: Tue, 11 Jun 2024 15:03:53 +0700 Subject: [PATCH] fix create func --- src/entities/AuthRoleAttr.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/entities/AuthRoleAttr.ts b/src/entities/AuthRoleAttr.ts index 1a4ff6e2..0ee8a618 100644 --- a/src/entities/AuthRoleAttr.ts +++ b/src/entities/AuthRoleAttr.ts @@ -97,6 +97,12 @@ export class CreateAuthRoleAttr { @Column() attrPrivilege: string; + + @Column("uuid") + authRoleId: string; + + @Column("uuid") + authSysId: string; } export type UpdateAuthRoleAttr = Partial;