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

62 lines
1 KiB
TypeScript
Raw Normal View History

interface DataOption {
id: string;
name: string;
}
interface DataNumberOption {
id: number;
name: string;
}
interface InvestigatefactsDataRowType {
id:string,
title: string;
respondentType: string;
offenseDetails: string,
investigationDetail: string,
dateInvestigate: string,
investigationStatusResult: string,
status: string
}
2023-10-19 15:37:39 +07:00
interface investigateDisDataRowType {
id:string
subject: string;
interrogated: string;
fault: string | undefined;
penaltyLevel: string | undefined;
caseFault: string;
dateInvestigate: string | null;
status: string | undefined;
active: string | undefined;
}
interface directorType {
id:string
prefix:string
firstName:string
lastName:string
position: string;
email: string;
phone: string;
}
interface responseType {
id:string
name:string
prefix:string
firstName:string
lastName:string
position:string
email:string
phone:string
}
export type {
DataOption,
InvestigatefactsDataRowType,
investigateDisDataRowType,
directorType,
DataNumberOption,
responseType
};