diff --git a/src/entities/AuthRoleAttr.ts b/src/entities/AuthRoleAttr.ts index e673da1a..a6022079 100644 --- a/src/entities/AuthRoleAttr.ts +++ b/src/entities/AuthRoleAttr.ts @@ -7,45 +7,45 @@ import { AuthRole } from "./AuthRole"; export class AuthRoleAttr extends EntityBase { @Column({ nullable: true, - comment: "", + comment: "ความเป็นเจ้าของ (Ownership)", length: 255, default: null, }) attrOwnership: string; @Column({ - comment: "", + comment: "สิทธิ์ดำเนินการ (Permission) การ Create", default: false, }) attrIsCreate: boolean; @Column({ - comment: "", + comment: "สิทธิ์ดำเนินการ (Permission) การ List", default: false, }) attrIsList: boolean; @Column({ - comment: "", + comment: "สิทธิ์ดำเนินการ (Permission) การ Get", default: false, }) attrIsGet: boolean; @Column({ - comment: "", + comment: "สิทธิ์ดำเนินการ (Permission) การ Update", default: false, }) attrIsUpdate: boolean; @Column({ - comment: "", + comment: "สิทธิ์ดำเนินการ (Permission) การ Delete", default: false, }) attrIsDelete: boolean; @Column({ nullable: true, - comment: "", + comment: "สิทธิการเข้าถึง(Privilege)", length: 255, default: null, })