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,48 @@
import { Column, Entity } from "typeorm";
import { EntityBase } from "./base/Base";
@Entity("ProfileChildrens")
export class ProfileChildrens extends EntityBase {
@Column({
nullable: true,
default: null,
comment: "อาชีพบุตร",
})
childrenCareer: string;
@Column({
nullable: true,
default: null,
comment: "ชื่อบุตร",
})
childrenFirstName: string;
@Column({
nullable: true,
default: null,
comment: "นามสกุลบุตร",
})
childrenLastName: string;
@Column({
nullable: true,
default: null,
comment: "คำนำหน้าบุตร",
})
childrenPrefix: string;
@Column({
nullable: true,
default: null,
type: "boolean",
comment: "มีชีวิตบุตร",
})
childrenLive: boolean;
@Column({
nullable: true,
default: null,
comment: "เลขที่บัตรประชาชนบุตร",
})
childrenCitizenId: string;
}