hrms-mgt/src/modules/11_discipline/interface/response/investigate.ts
2023-12-01 11:44:11 +07:00

46 lines
882 B
TypeScript

interface ListData {
id: string;
title: string;
respondentType: string;
offenseDetails: string;
investigationDetail: string;
investigationDateStart: Date | null;
investigationDateEnd: Date | null;
investigationStatusResult: string;
status: string;
createdAt: Date|null;
}
interface ArrayPerson {
id:string
idcard:string
name:string
prefix:string
firstName:string
lastName:string
posNo:string
position:string
positionLevel:string
salary:number|null
organization:string
}
interface ArrayPersonAdd {
personId:string
idcard:string
name:string
prefix:string
firstName:string
lastName:string
posNo:string
position:string
positionLevel:string
salary:number|null
organization:string
}
interface ocListType{
organizationId:string
organizationName:string
}
export type { ListData,ArrayPerson,ocListType,ArrayPersonAdd };