update ฟอร์มสืบสวน สอบสวนวินัย

This commit is contained in:
Warunee Tamkoo 2023-11-23 15:47:14 +07:00
parent 422ea07f4d
commit b5cc5c9cb7
12 changed files with 768 additions and 564 deletions

View file

@ -0,0 +1,13 @@
interface ListData {
id: string;
subject: string;
interrogated: string;
complaintOffenseDetails: string;
investigationDetail: string;
startDate: Date | null;
endDate: Date | null;
statusResult: string;
status: string;
}
export type { ListData };