PlacementDetail page.(Layout)
This commit is contained in:
parent
9be531bd01
commit
99714c555e
5 changed files with 699 additions and 3 deletions
10
src/modules/05_placement/interface/request/DataNum.ts
Normal file
10
src/modules/05_placement/interface/request/DataNum.ts
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
interface DataNumObject {
|
||||
id: number;
|
||||
count: number;
|
||||
name: string;
|
||||
color: string;
|
||||
}
|
||||
export type {
|
||||
DataNumObject,
|
||||
|
||||
};
|
||||
28
src/modules/05_placement/interface/request/placement.ts
Normal file
28
src/modules/05_placement/interface/request/placement.ts
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
interface TableName {
|
||||
position: string;
|
||||
Name: string;
|
||||
ExamOrder: number;
|
||||
Unit: string;
|
||||
ReportingDate: string; //วันที่รายงานตัว
|
||||
BMAOfficer: boolean;
|
||||
Status: string;
|
||||
chackList: any;
|
||||
}
|
||||
|
||||
interface RequestReport2 {
|
||||
organizationShortNameId: string;
|
||||
organizationOrganizationId: string;
|
||||
positionNumId: string;
|
||||
positionTypeId: string;
|
||||
positionExecutiveId: string;
|
||||
positionExecutiveSideId: string;
|
||||
positionPathId: string;
|
||||
positionPathSideId: string;
|
||||
positionLevelId: string;
|
||||
status: string | null;
|
||||
}
|
||||
|
||||
export type {
|
||||
TableName,
|
||||
RequestReport2,
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue