fix bug
This commit is contained in:
parent
397c7a5307
commit
81b0ba60df
8 changed files with 42 additions and 18 deletions
|
|
@ -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,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue