This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2025-03-21 09:58:16 +07:00
parent 0c419e04b4
commit e03d2a84a5
8 changed files with 117 additions and 43 deletions

View file

@ -0,0 +1,11 @@
interface DataProfile {
fullName: string;
position: string;
citizenId: string;
posNo: string;
posType: string;
posLevel: string;
org: string;
}
export type { DataProfile };

View file

@ -0,0 +1,9 @@
interface DataFilter {
status: string;
empType: string;
keyword: string;
page: number;
pageSize: number;
}
export type { DataFilter };

View 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 };