ปรับวินัย
This commit is contained in:
parent
7b56868c1f
commit
3482ec0ae4
18 changed files with 1222 additions and 70 deletions
10
src/modules/11_discipline/interface/request/result.ts
Normal file
10
src/modules/11_discipline/interface/request/result.ts
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
interface FormData {
|
||||
detail: string;
|
||||
}
|
||||
|
||||
interface FormRef {
|
||||
detail: object | null;
|
||||
[key: string]: any;
|
||||
}
|
||||
|
||||
export type { FormData, FormRef };
|
||||
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue