ตัดฟิลด์ couple

This commit is contained in:
Bright 2024-05-16 16:06:11 +07:00
parent a39c33ae0d
commit c03fa76295
3 changed files with 7 additions and 17 deletions

View file

@ -103,9 +103,9 @@ export class ProfileFamilyCouple extends EntityBase {
}
export type CreateProfileFamilyCouple= {
export type CreateProfileFamilyCouple = {
profileId: string;
couple: boolean | null;
// couple: boolean | null;
couplePrefix: string | null;
coupleFirstName: string | null;
coupleLastName: string | null;
@ -116,9 +116,9 @@ export type CreateProfileFamilyCouple= {
relationship: string | null;
}
export type CreateProfileEmployeeFamilyCouple= {
export type CreateProfileEmployeeFamilyCouple = {
profileEmployeeId: string;
couple: boolean | null;
// couple: boolean | null;
couplePrefix: string | null;
coupleFirstName: string | null;
coupleLastName: string | null;
@ -130,7 +130,7 @@ export type CreateProfileEmployeeFamilyCouple= {
}
export type UpdateProfileFamilyCouple = {
couple?: boolean | null;
// couple?: boolean | null;
couplePrefix?: string | null;
coupleFirstName?: string | null;
coupleLastName?: string | null;