updated format code
This commit is contained in:
parent
b75d69ea08
commit
b14bad2249
241 changed files with 14012 additions and 13811 deletions
|
|
@ -13,8 +13,8 @@ interface FormData {
|
|||
investigation: string;
|
||||
statusResult: string;
|
||||
causeText: string;
|
||||
complaintStatus:string
|
||||
reason: string
|
||||
complaintStatus: string;
|
||||
reason: string;
|
||||
}
|
||||
interface MyObjectInvestigateRef {
|
||||
complaint: object | null;
|
||||
|
|
@ -70,4 +70,4 @@ interface ExtendHistoryObject {
|
|||
dateStart: Date;
|
||||
dateEnd: Date;
|
||||
}
|
||||
export type { FormData, MyObjectInvestigateRef,FormDataList };
|
||||
export type { FormData, MyObjectInvestigateRef, FormDataList };
|
||||
|
|
|
|||
|
|
@ -1,30 +1,27 @@
|
|||
interface FormData {
|
||||
orderType: string;
|
||||
orderBy: string;
|
||||
listInvestigation: string;
|
||||
authority: string;
|
||||
orderNumber: string;
|
||||
dateYear: number;
|
||||
date: Date | null;
|
||||
authorityPosition: string
|
||||
subject: string;
|
||||
mistakeDetail: string
|
||||
orderType: string;
|
||||
orderBy: string;
|
||||
listInvestigation: string;
|
||||
authority: string;
|
||||
orderNumber: string;
|
||||
dateYear: number;
|
||||
date: Date | null;
|
||||
authorityPosition: string;
|
||||
subject: string;
|
||||
mistakeDetail: string;
|
||||
}
|
||||
interface MyObjectRef {
|
||||
orderType: object | null;
|
||||
orderBy: object | null;
|
||||
listInvestigation: object | null;
|
||||
authority: object | null;
|
||||
orderNumber: object | null;
|
||||
dateYear: object | null;
|
||||
date: object | null;
|
||||
authorityPosition: object | null;
|
||||
subject: object | null;
|
||||
mistakeDetail: object | null;
|
||||
[key: string]: any;
|
||||
orderType: object | null;
|
||||
orderBy: object | null;
|
||||
listInvestigation: object | null;
|
||||
authority: object | null;
|
||||
orderNumber: object | null;
|
||||
dateYear: object | null;
|
||||
date: object | null;
|
||||
authorityPosition: object | null;
|
||||
subject: object | null;
|
||||
mistakeDetail: object | null;
|
||||
[key: string]: any;
|
||||
}
|
||||
|
||||
export type {
|
||||
FormData,
|
||||
MyObjectRef
|
||||
}
|
||||
export type { FormData, MyObjectRef };
|
||||
|
|
|
|||
|
|
@ -3,15 +3,15 @@ interface FormData {
|
|||
disciplineType: string;
|
||||
titleType: string;
|
||||
oc: string;
|
||||
file: any
|
||||
disciplineDisciplinary_DocResults: any
|
||||
file: any;
|
||||
disciplineDisciplinary_DocResults: any;
|
||||
year: number | null;
|
||||
}
|
||||
|
||||
interface FileArray {
|
||||
id:string
|
||||
fileName:string
|
||||
pathName:string
|
||||
id: string;
|
||||
fileName: string;
|
||||
pathName: string;
|
||||
}
|
||||
interface FormRef {
|
||||
resultDescription: object | null;
|
||||
|
|
@ -27,27 +27,35 @@ interface DataOptionRes {
|
|||
organizationName: string;
|
||||
}
|
||||
interface DataListRow {
|
||||
id: string
|
||||
idInvestigate: string
|
||||
idComplaint: string
|
||||
respondentType: string
|
||||
persons: PersonType
|
||||
organizationId: string
|
||||
resultDescription: string
|
||||
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
|
||||
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 { FormData, FormRef, DataOption, DataOptionRes, PersonType, DataListRow ,FileArray};
|
||||
export type {
|
||||
FormData,
|
||||
FormRef,
|
||||
DataOption,
|
||||
DataOptionRes,
|
||||
PersonType,
|
||||
DataListRow,
|
||||
FileArray,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue