รักษาการในตำแหน่ง => API

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-06-20 14:48:49 +07:00
parent 50d4d8e351
commit 8850003836
5 changed files with 452 additions and 453 deletions

View file

@ -0,0 +1,10 @@
interface Pagination {
rowsPerPage: number;
}
interface DataOption {
id: string;
name: string;
}
export type { Pagination, DataOption };

View file

@ -0,0 +1 @@
export type {};

View file

@ -0,0 +1,35 @@
interface DataTree {
labelName: string;
orgCode: string;
orgLevel: 0;
orgName: string;
orgRootName: string;
orgTreeCode: string;
orgTreeId: string;
orgTreeName: string;
orgTreeShortName: string;
children: DataTree[];
posMaster: PosMaster[];
}
interface PosMaster {
fullNameCurrentHolder: string;
orgLevel: number;
orgTreeId: string;
posmasterId: string;
}
interface ListPerson {
citizenId: string;
firstName: string;
id: string;
lastName: string;
posLevel: string;
posNo: string;
posType: string;
position: string;
prefix: string;
posMasterOrder?: string;
}
export type { DataTree, PosMaster, ListPerson };