update
This commit is contained in:
parent
46533bbd62
commit
15d3ac574d
128 changed files with 347 additions and 322 deletions
38
src/modules/04_registryPerson/interface/request/Main.ts
Normal file
38
src/modules/04_registryPerson/interface/request/Main.ts
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
interface FormFilter {
|
||||
page: number;
|
||||
pageSize: number;
|
||||
keyword: string;
|
||||
type: string;
|
||||
posType: string;
|
||||
posLevel: string;
|
||||
retireYear: string | null;
|
||||
rangeYear: { min: number; max: number };
|
||||
isShowRetire: boolean | null;
|
||||
isProbation: boolean | null;
|
||||
}
|
||||
|
||||
interface FormAddPerson {
|
||||
birthDate: Date | null,
|
||||
rank: string,
|
||||
prefix: string;
|
||||
firstName: string;
|
||||
lastName: string;
|
||||
citizenId: string;
|
||||
position: string;
|
||||
posTypeId: string;
|
||||
posLevelId: string;
|
||||
}
|
||||
|
||||
interface MyObjectRef {
|
||||
prefix: object | null;
|
||||
firstName: object | null;
|
||||
lastName: object | null;
|
||||
citizenId: object | null;
|
||||
position: object | null;
|
||||
posTypeId: object | null;
|
||||
posLevelId: object | null;
|
||||
|
||||
[key: string]: any;
|
||||
}
|
||||
|
||||
export type { FormFilter, FormAddPerson, MyObjectRef };
|
||||
Loading…
Add table
Add a link
Reference in a new issue