import mis

This commit is contained in:
mamoss 2025-05-21 08:16:21 +07:00
parent 60a72243e8
commit 083a482b3a
26 changed files with 4711 additions and 0 deletions

View file

@ -0,0 +1,21 @@
import { Entity, Column } from "typeorm";
import { EntityBase } from "./base/Base";
@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;
}