ข้อมูลทะเบียนประวัติ
This commit is contained in:
parent
b05065ba67
commit
bd6f4fde7f
34 changed files with 9004 additions and 706 deletions
19
src/modules/10_registry/interface/index/Achievement.ts
Normal file
19
src/modules/10_registry/interface/index/Achievement.ts
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
interface DataOptionInsignia {
|
||||
id: string;
|
||||
name: string;
|
||||
typeName: string;
|
||||
}
|
||||
|
||||
interface ResponseObject {
|
||||
id: string;
|
||||
name: string;
|
||||
shortName: string;
|
||||
insigniaTypeName: string;
|
||||
createdAt: Date;
|
||||
lastUpdatedAt: Date;
|
||||
lastUpdateFullName: string;
|
||||
isActive: boolean;
|
||||
note: string;
|
||||
}
|
||||
|
||||
export type { DataOptionInsignia, ResponseObject };
|
||||
48
src/modules/10_registry/interface/index/Family.ts
Normal file
48
src/modules/10_registry/interface/index/Family.ts
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
interface FormPerson {
|
||||
isLive: null | number | boolean | string;
|
||||
citizenId: string;
|
||||
prefix: string;
|
||||
firstName: string;
|
||||
lastName: string;
|
||||
job: string;
|
||||
lastNameOld?: string;
|
||||
statusMarital?: string;
|
||||
}
|
||||
|
||||
interface FormChildren {
|
||||
id: string;
|
||||
createdAt: string;
|
||||
createdUserId: string;
|
||||
lastUpdatedAt: string;
|
||||
lastUpdateUserId: string;
|
||||
createdFullName: string;
|
||||
lastUpdateFullName: string;
|
||||
childrenCareer: string;
|
||||
childrenFirstName: string;
|
||||
childrenLastName: string;
|
||||
childrenPrefix: string;
|
||||
childrenLive: boolean | number | null;
|
||||
childrenCitizenId: string;
|
||||
profileId: string | null;
|
||||
profileEmployeeId: string | null;
|
||||
}
|
||||
|
||||
interface DataOptionInsignia {
|
||||
id: string;
|
||||
name: string;
|
||||
typeName: string;
|
||||
}
|
||||
|
||||
interface ResponseObject {
|
||||
id: string;
|
||||
name: string;
|
||||
shortName: string;
|
||||
insigniaTypeName: string;
|
||||
createdAt: Date;
|
||||
lastUpdatedAt: Date;
|
||||
lastUpdateFullName: string;
|
||||
isActive: boolean;
|
||||
note: string;
|
||||
}
|
||||
|
||||
export type { FormPerson, FormChildren, DataOptionInsignia, ResponseObject };
|
||||
Loading…
Add table
Add a link
Reference in a new issue