updated format code
This commit is contained in:
parent
b75d69ea08
commit
b14bad2249
241 changed files with 14012 additions and 13811 deletions
|
|
@ -1,83 +1,91 @@
|
|||
interface MainList {
|
||||
id: string
|
||||
title: string
|
||||
description: string
|
||||
status: string
|
||||
type: string
|
||||
year: number
|
||||
caseType: string
|
||||
caseNumber: string
|
||||
fullname: string
|
||||
citizenId: string
|
||||
profileId: string
|
||||
lastUpdatedAt: Date
|
||||
id: string;
|
||||
title: string;
|
||||
description: string;
|
||||
status: string;
|
||||
type: string;
|
||||
year: number;
|
||||
caseType: string;
|
||||
caseNumber: string;
|
||||
fullname: string;
|
||||
citizenId: string;
|
||||
profileId: string;
|
||||
lastUpdatedAt: Date;
|
||||
}
|
||||
|
||||
interface RowList {
|
||||
id: string
|
||||
title: string
|
||||
description: string
|
||||
status: string
|
||||
type: string
|
||||
year: number
|
||||
caseType: string
|
||||
caseNumber: string
|
||||
fullname: string
|
||||
citizenId: string
|
||||
profileId: string
|
||||
lastUpdatedAt: string | null
|
||||
id: string;
|
||||
title: string;
|
||||
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
|
||||
oc:string
|
||||
position:string
|
||||
profileId: string;
|
||||
fullname: string;
|
||||
citizenId: string;
|
||||
oc: string;
|
||||
position: 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
|
||||
oc: string
|
||||
position: string
|
||||
lastUpdatedAt: string
|
||||
historyStatus: object | null
|
||||
disciplineComplaint_Appeal_Docs: object | null
|
||||
id: string;
|
||||
title: string;
|
||||
description: string;
|
||||
status: string;
|
||||
type: string;
|
||||
year: number;
|
||||
caseType: string;
|
||||
caseNumber: string;
|
||||
fullname: string;
|
||||
citizenId: string;
|
||||
profileId: string;
|
||||
oc: string;
|
||||
position: string;
|
||||
lastUpdatedAt: string;
|
||||
historyStatus: object | null;
|
||||
disciplineComplaint_Appeal_Docs: object | null;
|
||||
}
|
||||
|
||||
interface HistoryStatusType {
|
||||
status: string
|
||||
createdFullName: string
|
||||
createdAt: Date
|
||||
status: string;
|
||||
createdFullName: string;
|
||||
createdAt: Date;
|
||||
}
|
||||
interface FileObType {
|
||||
id:string
|
||||
pathName:string
|
||||
fileName:string
|
||||
id: string;
|
||||
pathName: string;
|
||||
fileName: string;
|
||||
}
|
||||
interface MyObjectAppealRef {
|
||||
type: object | null;
|
||||
title: object | null;
|
||||
description: object | null;
|
||||
caseTypeRef: object | null;
|
||||
caseNumberRef: object | null;
|
||||
[key: string]: any;
|
||||
type: object | null;
|
||||
title: object | null;
|
||||
description: object | null;
|
||||
caseTypeRef: object | null;
|
||||
caseNumberRef: object | null;
|
||||
[key: string]: any;
|
||||
}
|
||||
|
||||
interface EditStatusRef {
|
||||
reason: object | null;
|
||||
status: object | null;
|
||||
[key: string]: any;
|
||||
reason: object | null;
|
||||
status: object | null;
|
||||
[key: string]: any;
|
||||
}
|
||||
|
||||
|
||||
export type { MainList, RowList, MyObjectAppealRef, EditStatusRef,EditDataList,FileObType,RowAddList,HistoryStatusType };
|
||||
export type {
|
||||
MainList,
|
||||
RowList,
|
||||
MyObjectAppealRef,
|
||||
EditStatusRef,
|
||||
EditDataList,
|
||||
FileObType,
|
||||
RowAddList,
|
||||
HistoryStatusType,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue