api รายการสืบสวนข้อเท็จจริง
This commit is contained in:
parent
691a989c16
commit
3c5fcc029b
14 changed files with 1025 additions and 383 deletions
|
|
@ -1,35 +1,53 @@
|
|||
interface FormData {
|
||||
id:string
|
||||
idComplaint:string
|
||||
investigationDetail: string;
|
||||
complaint: string;
|
||||
complaintdetail: string;
|
||||
detail: string;
|
||||
investigationDescription: string;
|
||||
fault: string;
|
||||
other: string;
|
||||
evidenceFiles: File | null;
|
||||
investigationDetailOther: string;
|
||||
evidenceFiles: any | null;
|
||||
fileComplaint: File | null;
|
||||
clickTime: boolean;
|
||||
date: Date | null;
|
||||
dateEnd: Date;
|
||||
investigationDateStart: Date | null;
|
||||
investigationDateEnd: Date|null;
|
||||
daysExtend: number | null;
|
||||
investigation: string;
|
||||
statusResult: string;
|
||||
causeText: string;
|
||||
investigationStatusResult: string;
|
||||
investigationCauseText: string;
|
||||
complaintStatus:string
|
||||
reason: string
|
||||
result: string
|
||||
directors:object|null
|
||||
status:string
|
||||
disciplineInvestigateDocs:object|null
|
||||
disciplineInvestigateRelevantDocs:object|null
|
||||
documentFile:any|null
|
||||
respondentType:string
|
||||
organizationId:string
|
||||
persons:object|null
|
||||
}
|
||||
interface ArrayPerson{
|
||||
id:string
|
||||
name:string
|
||||
position:string
|
||||
email:string
|
||||
phone:string
|
||||
}
|
||||
interface MyObjectInvestigateRef {
|
||||
complaint: object | null;
|
||||
complaintdetail: object | null;
|
||||
detail: object | null;
|
||||
investigationDescription: object | null;
|
||||
fault: object | null;
|
||||
evidenceFiles: object | null;
|
||||
fileComplaint: object | null;
|
||||
date: object | null;
|
||||
dateEnd: object | null;
|
||||
investigation: object | null;
|
||||
investigationDetail: object | null;
|
||||
daysExtend: object | null;
|
||||
statusResult: object | null;
|
||||
causeText: object | null;
|
||||
reason: object | null;
|
||||
investigationStatusResult: object | null;
|
||||
investigationCauseText: object | null;
|
||||
result: object | null;
|
||||
[key: string]: any;
|
||||
}
|
||||
|
||||
|
||||
export type { FormData, MyObjectInvestigateRef };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue