46 lines
882 B
TypeScript
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 };
|