no message

This commit is contained in:
Bright 2025-06-19 15:01:05 +07:00
parent 3ac035d5e0
commit 313be6955e

View file

@ -31,9 +31,9 @@ export class EntityBase {
})
lastUpdateUserId!: String;
@Column({ comment: "ชื่อ User ที่สร้างข้อมูล", length: 200, default: "string" })
@Column({ comment: "ชื่อ User ที่สร้างข้อมูล", length: 200, default: "System Administrator" })
createdFullName!: String;
@Column({ comment: "ชื่อ User ที่แก้ไขข้อมูลล่าสุด", length: 200, default: "string" })
@Column({ comment: "ชื่อ User ที่แก้ไขข้อมูลล่าสุด", length: 200, default: "System Administrator" })
lastUpdateFullName!: String;
}