This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-09-25 17:13:44 +07:00
parent 397c7a5307
commit 81b0ba60df
8 changed files with 42 additions and 18 deletions

View file

@ -74,8 +74,32 @@ interface FileLists {
interface HistoryResultCommand {
commandSubject: string;
createdAt: Date|null;
lastUpdatedAt: Date|null;
createdAt: Date | null;
lastUpdatedAt: Date | null;
}
interface DataPerson {
id: string;
idInvestigate: string;
idComplaint: string;
respondentType: string;
persons: PersonType;
organizationId: string;
resultDescription: string;
}
interface PersonType {
id: string;
idcard: string;
name: string;
prefix: string;
firstName: string;
lastName: string;
position: string;
positionLevel: string;
salary: number;
personId: string;
posNo: string;
organization: string;
}
export type {
@ -88,5 +112,6 @@ export type {
FileLists,
DataOptioGroup,
DataOptionYear,
HistoryResultCommand
HistoryResultCommand,
DataPerson,
};