hrms-api-org/src/entities/mis/ProfileOthers.ts

22 lines
428 B
TypeScript
Raw Normal View History

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;
}