เพิม interface row
This commit is contained in:
parent
c42400e57c
commit
d94531204a
12 changed files with 99 additions and 133 deletions
38
src/modules/05_placement/interface/response/AppointMent.ts
Normal file
38
src/modules/05_placement/interface/response/AppointMent.ts
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
interface listAppointType {
|
||||
personalId:string
|
||||
citizenId:number
|
||||
fullname:string
|
||||
organizationName:string
|
||||
orgName:string
|
||||
organizationShortName:string
|
||||
positionNumber:string
|
||||
positionPath:string
|
||||
status:string
|
||||
createdAt:string
|
||||
birthday:string
|
||||
}
|
||||
|
||||
interface resData {
|
||||
id:string
|
||||
citizenId:number
|
||||
prefix:string
|
||||
firstname:string
|
||||
lastname:string
|
||||
organizationName:string
|
||||
organizationShortName:string
|
||||
positionNumber:string
|
||||
positionPath:string
|
||||
status:string
|
||||
createdAt:Date
|
||||
dateOfBirth:Date
|
||||
}
|
||||
interface orgFilter{
|
||||
orgName:string
|
||||
status:string
|
||||
}
|
||||
|
||||
export type {
|
||||
listAppointType,
|
||||
resData,
|
||||
orgFilter
|
||||
}
|
||||
|
|
@ -1 +1,6 @@
|
|||
export type {};
|
||||
interface OpType {
|
||||
commandCode:string
|
||||
}
|
||||
export type {
|
||||
OpType
|
||||
};
|
||||
|
|
|
|||
|
|
@ -44,11 +44,9 @@ interface listMainAPI {
|
|||
statustext:string
|
||||
createdAt:Date
|
||||
}
|
||||
interface OpType {
|
||||
commandCode:string
|
||||
}
|
||||
|
||||
export type {
|
||||
listMain,
|
||||
listMainAPI,
|
||||
OpType
|
||||
|
||||
}
|
||||
|
|
@ -1,5 +1,4 @@
|
|||
interface officerType {
|
||||
no: number;
|
||||
id: string;
|
||||
prefix: string;
|
||||
firstName: string;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue