api รายการสืบสวนข้อเท็จจริง

This commit is contained in:
setthawutttty 2023-11-24 17:49:25 +07:00
parent 691a989c16
commit 3c5fcc029b
14 changed files with 1025 additions and 383 deletions

View file

@ -10,12 +10,12 @@ interface DataNumberOption {
interface InvestigatefactsDataRowType {
id:string,
subject: string;
interrogated: string;
complaintOffenseDetails: string,
title: string;
respondentType: string;
offenseDetails: string,
investigationDetail: string,
dateInvestigate: string,
statusResult: string,
investigationStatusResult: string,
status: string
}
@ -32,12 +32,23 @@ interface investigateDisDataRowType {
}
interface directorType {
nameDirector: string;
id:string
prefix:string
firstName:string
lastName:string
position: string;
duty: string;
email: string;
telephone: string;
role: string;
phone: string;
}
interface responseType {
id:string
name:string
prefix:string
firstName:string
lastName:string
position:string
email:string
phone:string
}
export type {
@ -45,5 +56,6 @@ export type {
InvestigatefactsDataRowType,
investigateDisDataRowType,
directorType,
DataNumberOption
DataNumberOption,
responseType
};