no message
This commit is contained in:
parent
47f84f444b
commit
c9e8f3b89c
9 changed files with 1150 additions and 217 deletions
9
src/modules/04_registryNew/interface/index/document.ts
Normal file
9
src/modules/04_registryNew/interface/index/document.ts
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
interface ArrayFileList {
|
||||
id:string
|
||||
pathName:string
|
||||
fileName:string
|
||||
}
|
||||
|
||||
export type {
|
||||
ArrayFileList
|
||||
}
|
||||
30
src/modules/04_registryNew/interface/index/other.ts
Normal file
30
src/modules/04_registryNew/interface/index/other.ts
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
interface RowList {
|
||||
id: string;
|
||||
date: Date | null;
|
||||
detail: string;
|
||||
createdFullName: string;
|
||||
createdAt: Date;
|
||||
}
|
||||
|
||||
interface FormFilter {
|
||||
page: number;
|
||||
pageSize: number;
|
||||
keyword: string;
|
||||
type: string;
|
||||
posType: string;
|
||||
posLevel: string;
|
||||
retireYear: string | null;
|
||||
rangeYear: { min: number; max: number };
|
||||
isShowRetire: boolean;
|
||||
isProbation: boolean;
|
||||
}
|
||||
interface MyObjectRef {
|
||||
detail: object | null;
|
||||
[key: string]: any
|
||||
}
|
||||
|
||||
export type {
|
||||
RowList,
|
||||
FormFilter,
|
||||
MyObjectRef,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue