ui รายการอุทธรณ์ร้องทุกข์ *ยังไม่เสร็จดี

This commit is contained in:
setthawutttty 2023-12-13 13:09:50 +07:00
parent e410268bfc
commit 163a3b07a6
9 changed files with 1085 additions and 2 deletions

View file

@ -0,0 +1,42 @@
interface MainList {
id: string
type: string
title: string
prefix: string
firstName: string
lastName: string
idCard: string
caseType: string
caseNo: string
dateEdit: Date
status: string
}
interface RowList {
id: string
type: string
title: string
name: string
prefix: string
firstName: string
lastName: string
idCard: string
caseType: string
caseNo: string
dateEdit: string | null
status: string
}
interface MyObjectAppealRef {
complaint: object | null;
complaintdetail: object | null;
[key: string]: any;
}
interface EditStatusRef {
reason: object | null;
status: object | null;
[key: string]: any;
}
export type { MainList, RowList , MyObjectAppealRef ,EditStatusRef};