Merge branch 'dev/methapon' into develop
This commit is contained in:
commit
c32883f2e8
1 changed files with 4 additions and 3 deletions
|
|
@ -195,9 +195,10 @@ export class ProfileChildren extends EntityBase {
|
||||||
@Column({
|
@Column({
|
||||||
nullable: true,
|
nullable: true,
|
||||||
default: null,
|
default: null,
|
||||||
|
type: "boolean",
|
||||||
comment: "มีชีวิตบุตร",
|
comment: "มีชีวิตบุตร",
|
||||||
})
|
})
|
||||||
childrenLive: string;
|
childrenLive: boolean;
|
||||||
|
|
||||||
@Column({
|
@Column({
|
||||||
nullable: true,
|
nullable: true,
|
||||||
|
|
@ -254,7 +255,7 @@ export type CreateChildren = {
|
||||||
childrenFirstName: string;
|
childrenFirstName: string;
|
||||||
childrenLastName: string;
|
childrenLastName: string;
|
||||||
childrenPrefix: string;
|
childrenPrefix: string;
|
||||||
childrenLive: string;
|
childrenLive: boolean;
|
||||||
childrenCitizenId: string;
|
childrenCitizenId: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -264,7 +265,7 @@ export type UpdateChildren = {
|
||||||
childrenFirstName?: string | null;
|
childrenFirstName?: string | null;
|
||||||
childrenLastName?: string | null;
|
childrenLastName?: string | null;
|
||||||
childrenPrefix?: string | null;
|
childrenPrefix?: string | null;
|
||||||
childrenLive?: string | null;
|
childrenLive?: boolean | null;
|
||||||
childrenCitizenId?: string | null;
|
childrenCitizenId?: string | null;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue