hrms-mgt/src/modules/11_discipline/interface/index/Main.ts

69 lines
1.2 KiB
TypeScript
Raw Normal View History

interface DataOption {
id: string;
name: string;
}
interface investigatefactsDataRowType {
subject: string;
interrogated: string;
fault: string;
status: string;
active: string;
}
2023-10-18 13:34:58 +07:00
interface MyObjectRef {
orderType: any;
orderBy: any;
listInvestigation: any;
authority: any;
orderNumber: any;
dateYear: any;
date: any;
authorityPosition: any;
subject: any;
mistakeDetail: any;
[key: string]: any;
2023-10-18 13:34:58 +07:00
}
interface MyObjectComplaintsRef {
complainantType: any;
complainant: any;
office: any;
agency: any;
topicComplaint: any;
datereceive: any;
dateconsideration: any;
offenseDescription: any;
considerationLevel: any;
datewarn: any;
receivecomplaints: any;
petitioner: any;
files: any;
[key: string]: any;
}
interface investigateDisDataRowType {
subject: string;
interrogated: string;
fault: string;
penaltyLevel: string;
caseFault: string;
dateInvestigate: string;
status: string;
active: string;
}
interface directorType {
nameDirector: string;
position: string;
duty: string;
email: string;
telephone: string;
}
export type {
DataOption,
investigatefactsDataRowType,
MyObjectRef,
MyObjectComplaintsRef,
investigateDisDataRowType,
directorType,
};