รายการอุทธรณ์ร้องทุกข์

This commit is contained in:
setthawutttty 2023-12-14 10:18:04 +07:00
parent c65ac3cba6
commit 50b8f028b6
10 changed files with 885 additions and 207 deletions

View file

@ -2,6 +2,10 @@ interface DataOption {
id: string;
name: string;
}
interface DataOptionYear {
id: number;
name: string;
}
interface DataOptioGroup {
id: string;
name: string;
@ -78,4 +82,5 @@ export type {
responseType,
FileLists,
DataOptioGroup,
DataOptionYear,
};

View file

@ -1,35 +1,70 @@
interface MainList {
id: string
type: string
title: string
prefix: string
firstName: string
lastName: string
idCard: string
caseType: string
caseNo: string
dateEdit: Date
description: string
status: string
type: string
year: number
caseType: string
caseNumber: string
fullname: string
citizenId: string
profileId: string
lastUpdatedAt: Date
}
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
description: string
status: string
type: string
year: number
caseType: string
caseNumber: string
fullname: string
citizenId: string
profileId: string
lastUpdatedAt: string | null
}
interface RowAddList {
profileId:string
fullname:string
citizenId:string
}
interface EditDataList {
id: string
title: string
description: string
status: string
type: string
year: number
caseType: string
caseNumber: string
fullname: string
citizenId: string
profileId: string
lastUpdatedAt: string
historyStatus: object | null
disciplineComplaint_Appeal_Docs: object | null
}
interface HistoryStatusType {
status: string
createdAt: string
}
interface fileObType {
id:string
pathName:string
fileName:string
}
interface MyObjectAppealRef {
complaint: object | null;
complaintdetail: object | null;
type: object | null;
title: object | null;
description: object | null;
caseTypeRef: object | null;
caseNumberRef: object | null;
[key: string]: any;
}
@ -39,4 +74,5 @@ interface EditStatusRef {
[key: string]: any;
}
export type { MainList, RowList , MyObjectAppealRef ,EditStatusRef};
export type { MainList, RowList, MyObjectAppealRef, EditStatusRef,EditDataList,HistoryStatusType,fileObType,RowAddList };