ui รายการอุทธรณ์ร้องทุกข์ *ยังไม่เสร็จดี
This commit is contained in:
parent
e410268bfc
commit
163a3b07a6
9 changed files with 1085 additions and 2 deletions
|
|
@ -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};
|
||||
Loading…
Add table
Add a link
Reference in a new issue