รักษาการในตำแหน่ง => API
This commit is contained in:
parent
50d4d8e351
commit
8850003836
5 changed files with 452 additions and 453 deletions
10
src/modules/17_acting/interface/index/Main.ts
Normal file
10
src/modules/17_acting/interface/index/Main.ts
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
interface Pagination {
|
||||
rowsPerPage: number;
|
||||
}
|
||||
|
||||
interface DataOption {
|
||||
id: string;
|
||||
name: string;
|
||||
}
|
||||
|
||||
export type { Pagination, DataOption };
|
||||
1
src/modules/17_acting/interface/request/Main.ts
Normal file
1
src/modules/17_acting/interface/request/Main.ts
Normal file
|
|
@ -0,0 +1 @@
|
|||
export type {};
|
||||
35
src/modules/17_acting/interface/response/Main.ts
Normal file
35
src/modules/17_acting/interface/response/Main.ts
Normal 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 };
|
||||
Loading…
Add table
Add a link
Reference in a new issue