no message

This commit is contained in:
setthawutttty 2023-11-24 17:56:41 +07:00
commit d3ec604478
35 changed files with 2452 additions and 729 deletions

View file

@ -20,15 +20,15 @@ interface InvestigatefactsDataRowType {
}
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;
id: string; //id รายการ
title: string; //เรื่องร้องเรียน
interrogated: string; //ผู้ถูกสอบสวน
descMistake: string; //ลักษณะความผิด
mistakeLevel: string; //ระดับโทษความผิด
mistakeCase: string; //กรณีความผิด
investigationDate: Date | null; //วันที่สอบสวน
status: string | null; //สถานะ
isResultConfirmed: Boolean; //ยืนยันผลเเล้ว/ยังไม่ได้ยืนยันผล
}
interface directorType {
@ -51,11 +51,18 @@ interface responseType {
phone:string
}
interface FileLists {
id: string; //id เอกสาร
fileName: string; //ชื่่อเอกสาร
pathName: string; //link file
}
export type {
DataOption,
InvestigatefactsDataRowType,
investigateDisDataRowType,
directorType,
DataNumberOption,
responseType
responseType,
FileLists,
};