probation add personal add name child 1 to child 4

This commit is contained in:
Warunee Tamkoo 2025-06-06 11:28:28 +07:00
parent 3aa299ae8e
commit 547662e440
2 changed files with 8 additions and 0 deletions

View file

@ -347,6 +347,10 @@ function addPersonalData(data: ResProfileProbation) {
child3: data.orgChild3,
child4: data.orgChild4,
rootDna: data.rootDna,
orgChild1Dna: data.orgChild1Dna,
orgChild2Dna: data.orgChild2Dna,
orgChild3Dna: data.orgChild3Dna,
orgChild4Dna: data.orgChild4Dna,
});
// ,

View file

@ -44,6 +44,10 @@ interface ResProfileProbation {
commandNo?: string;
root: string;
rootDna: string;
orgChild1Dna: string;
orgChild2Dna: string;
orgChild3Dna: string;
orgChild4Dna: string;
}
export type { ResListProbation, ResProfileProbation };