2025-05-21 08:16:21 +07:00
|
|
|
import { Entity, Column } from "typeorm";
|
2025-08-05 22:24:45 +07:00
|
|
|
import { EntityBase } from "../base/Base";
|
2025-05-21 08:16:21 +07:00
|
|
|
|
|
|
|
|
@Entity("ProfileOthers")
|
|
|
|
|
export class ProfileOthers extends EntityBase {
|
|
|
|
|
@Column({
|
|
|
|
|
nullable: true,
|
|
|
|
|
comment: "รายละเอียด",
|
|
|
|
|
type: "text",
|
|
|
|
|
default: null,
|
|
|
|
|
})
|
|
|
|
|
detail: string;
|
|
|
|
|
|
|
|
|
|
@Column({
|
|
|
|
|
nullable: true,
|
|
|
|
|
type: "datetime",
|
|
|
|
|
comment: "วันที่",
|
|
|
|
|
default: null,
|
|
|
|
|
})
|
|
|
|
|
date: Date;
|
|
|
|
|
}
|