27 lines
498 B
TypeScript
27 lines
498 B
TypeScript
|
|
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 };
|