แก้ไขขอโอน รับโอน รายการช่วยราชการ รายการส่งตัวกลับ รายการลาออก
This commit is contained in:
parent
a3eabec197
commit
9505fb5dbb
14 changed files with 789 additions and 107 deletions
|
|
@ -16,6 +16,9 @@ interface ResponseRow {
|
|||
positionPath: string;
|
||||
birthday: string | null;
|
||||
status: string;
|
||||
statusText: string;
|
||||
createdAt: Date | null;
|
||||
dateText: string | null;
|
||||
}
|
||||
|
||||
interface ResponseData {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
interface ResponseData {
|
||||
createdAt: Date;
|
||||
dateText: string | null;
|
||||
createdAt: Date | null;
|
||||
date: Date;
|
||||
firstName: string;
|
||||
id: string;
|
||||
|
|
|
|||
|
|
@ -1,23 +1,25 @@
|
|||
interface officerType {
|
||||
no:number,
|
||||
id: string,
|
||||
prefix: string,
|
||||
firstName: string,
|
||||
lastName: string,
|
||||
position: string,
|
||||
posNo: string,
|
||||
positionLevel: string,
|
||||
createdAt: Date,
|
||||
organization: string,
|
||||
reason: string,
|
||||
status: string,
|
||||
date: Date,
|
||||
salary: number,
|
||||
positionTypeOld: string,
|
||||
positionLevelOld: string,
|
||||
positionNumberOld: string,
|
||||
organizationPositionOld: string,
|
||||
isActive: true
|
||||
no: number;
|
||||
id: string;
|
||||
prefix: string;
|
||||
firstName: string;
|
||||
lastName: string;
|
||||
position: string;
|
||||
posNo: string;
|
||||
positionLevel: string;
|
||||
createdAt: Date;
|
||||
organization: string;
|
||||
reason: string;
|
||||
status: string;
|
||||
date: Date;
|
||||
salary: number;
|
||||
positionTypeOld: string;
|
||||
positionLevelOld: string;
|
||||
positionNumberOld: string;
|
||||
organizationPositionOld: string;
|
||||
isActive: boolean;
|
||||
dateEnd: string;
|
||||
dateStart: string;
|
||||
}
|
||||
|
||||
export type { officerType};
|
||||
export type { officerType };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue