ปรับปฎิทิน
This commit is contained in:
parent
bc6c78c0a6
commit
8500d25a5a
5 changed files with 374 additions and 343 deletions
|
|
@ -76,23 +76,15 @@ interface FormData {
|
|||
disciplinaryStatusResult: string;
|
||||
disciplinaryCauseText: string;
|
||||
disciplinaryResult: string;
|
||||
disciplinaryExtendHistory: ExtendHistoryObject[];
|
||||
}
|
||||
|
||||
// filesWitnesses: File | null;
|
||||
// filesEtc: File | null;
|
||||
// casefault: string;
|
||||
// typefault: string;
|
||||
// faultLevel: string;
|
||||
// refLaw: string;
|
||||
// detailComplaint: string;
|
||||
// whereInvestigate: string;
|
||||
// trueDetail: string;
|
||||
// evidence: string;
|
||||
// recordAccuser: string;
|
||||
// witnesses: string;
|
||||
// InvestResults: string;
|
||||
// complaintStatus: string;
|
||||
|
||||
// consideredAgency: string;
|
||||
interface ExtendHistoryObject {
|
||||
name: string;
|
||||
num: number;
|
||||
daysExtend: number | null;
|
||||
dateStart: Date;
|
||||
dateEnd: Date;
|
||||
}
|
||||
|
||||
interface DisciplinaryRef {
|
||||
|
|
|
|||
|
|
@ -32,4 +32,42 @@ interface MyObjectInvestigateRef {
|
|||
reason: object | null;
|
||||
[key: string]: any;
|
||||
}
|
||||
export type { FormData, MyObjectInvestigateRef };
|
||||
|
||||
interface FormDataList {
|
||||
id: string;
|
||||
idComplaint: string;
|
||||
investigationDetail: string;
|
||||
complaint: string;
|
||||
complaintdetail: string;
|
||||
investigationDescription: string;
|
||||
fault: string;
|
||||
investigationDetailOther: string;
|
||||
evidenceFiles: any | null;
|
||||
fileComplaint: File | null;
|
||||
investigationExtendStatus: boolean | null;
|
||||
investigationDateStart: Date | null;
|
||||
investigationDateEnd: Date | null;
|
||||
investigationDaysExtend: number | null;
|
||||
investigationStatusResult: string;
|
||||
investigationCauseText: string;
|
||||
complaintStatus: string;
|
||||
result: string;
|
||||
directors: object | null;
|
||||
status: string;
|
||||
disciplineInvestigateDocs: any;
|
||||
disciplineInvestigateRelevantDocs: any;
|
||||
documentFile: any | null;
|
||||
respondentType: string;
|
||||
organizationId: string;
|
||||
persons: object | null;
|
||||
disciplinaryExtendHistory: ExtendHistoryObject[];
|
||||
}
|
||||
|
||||
interface ExtendHistoryObject {
|
||||
name: string;
|
||||
num: number;
|
||||
daysExtend: number | null;
|
||||
dateStart: Date;
|
||||
dateEnd: Date;
|
||||
}
|
||||
export type { FormData, MyObjectInvestigateRef,FormDataList };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue