แก้ฟิว ออกคำสั่ง

This commit is contained in:
kittapath 2024-10-02 13:50:36 +07:00
parent ba8d78b11c
commit 2af2f32cf7
3 changed files with 39 additions and 24 deletions

View file

@ -14,27 +14,27 @@ export class CommandRecive extends EntityBase {
@Column({
nullable: true,
comment: "คำนำหน้า",
comment: "ชื่อ-สกุล",
length: 255,
default: null,
})
prefix: string;
fullName: string;
@Column({
nullable: true,
comment: "ชื่อ",
length: 255,
default: null,
})
firstName: string;
// @Column({
// nullable: true,
// comment: "ชื่อ",
// length: 255,
// default: null,
// })
// firstName: string;
@Column({
nullable: true,
comment: "สกุล",
length: 255,
default: null,
})
lastName: string;
// @Column({
// nullable: true,
// comment: "สกุล",
// length: 255,
// default: null,
// })
// lastName: string;
@Column({
nullable: true,