ปรับวินัย

This commit is contained in:
Warunee Tamkoo 2023-11-24 16:52:10 +07:00
parent 7b56868c1f
commit 3482ec0ae4
18 changed files with 1222 additions and 70 deletions

View file

@ -0,0 +1,10 @@
interface FormData {
detail: string;
}
interface FormRef {
detail: object | null;
[key: string]: any;
}
export type { FormData, FormRef };

View file

@ -2,7 +2,7 @@ interface DataListRow {
id: string;
personId: string;
title: string;
dateReceived: Date | "-";
dateReceived: string;
respondentType: string;
offenseDetails: string;
createdAt: string;
@ -34,12 +34,12 @@ interface DataList {
id: string;
personId: string;
title: string;
dateReceived: Date | "-";
dateReceived: Date | null;
respondentType: string;
offenseDetails: string;
createdAt: Date;
levelConsideration: string;
dateConsideration: Date;
dateConsideration: Date | null;
status: string;
}