แก้ วินัย เพิ่ม api

This commit is contained in:
setthawutttty 2024-01-03 13:50:17 +07:00
parent fc55ffc928
commit 142fc30d8b
13 changed files with 134 additions and 145 deletions

View file

@ -26,6 +26,7 @@ interface FormData {
organizationId: string;
persons: object | null;
investigationExtendHistory: ExtendHistoryObject[];
isDisciplinary:boolean
}
interface ExtendHistoryObject {

View file

@ -1,8 +1,8 @@
interface DirectorRows {
id:string
prefix:string
firstName:string
lastName:string
id: string
prefix: string
firstName: string
lastName: string
position: string;
email: string;
phone: string;
@ -10,11 +10,11 @@ interface DirectorRows {
totalDisciplinary: number
}
interface DirectorRowsResponse {
id:string
fullName:string
position:string
email:string
phone:string
id: string
fullName: string
position: string
email: string
phone: string
totalInvestigate: number
totalDisciplinary: number
}