fix
This commit is contained in:
parent
0c419e04b4
commit
e03d2a84a5
8 changed files with 117 additions and 43 deletions
11
src/modules/04_registryPerson/interface/index/Edit.ts
Normal file
11
src/modules/04_registryPerson/interface/index/Edit.ts
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
interface DataProfile {
|
||||
fullName: string;
|
||||
position: string;
|
||||
citizenId: string;
|
||||
posNo: string;
|
||||
posType: string;
|
||||
posLevel: string;
|
||||
org: string;
|
||||
}
|
||||
|
||||
export type { DataProfile };
|
||||
9
src/modules/04_registryPerson/interface/request/Edit.ts
Normal file
9
src/modules/04_registryPerson/interface/request/Edit.ts
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
interface DataFilter {
|
||||
status: string;
|
||||
empType: string;
|
||||
keyword: string;
|
||||
page: number;
|
||||
pageSize: number;
|
||||
}
|
||||
|
||||
export type { DataFilter };
|
||||
26
src/modules/04_registryPerson/interface/response/Edit.ts
Normal file
26
src/modules/04_registryPerson/interface/response/Edit.ts
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
interface DataSalaryPos {
|
||||
avatar: string;
|
||||
avatarName: string;
|
||||
citizenId: string;
|
||||
firstName: string;
|
||||
id: string;
|
||||
lastName: string;
|
||||
org: string;
|
||||
orgRevisionId: string;
|
||||
orgRootShortName: string;
|
||||
posExecutive: string;
|
||||
posLevel: string;
|
||||
posLevelId: string;
|
||||
posNo: string;
|
||||
posType: string;
|
||||
posTypeId: string;
|
||||
position: string;
|
||||
prefix: string;
|
||||
rank: string;
|
||||
root: string;
|
||||
rootId: string;
|
||||
statusCheckEdit: string;
|
||||
type: string;
|
||||
}
|
||||
|
||||
export type { DataSalaryPos };
|
||||
Loading…
Add table
Add a link
Reference in a new issue