เพิม interface row

This commit is contained in:
setthawutttty 2023-09-22 11:16:25 +07:00
parent c42400e57c
commit d94531204a
12 changed files with 99 additions and 133 deletions

View 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
}

View file

@ -1 +1,6 @@
export type {};
interface OpType {
commandCode:string
}
export type {
OpType
};

View file

@ -44,11 +44,9 @@ interface listMainAPI {
statustext:string
createdAt:Date
}
interface OpType {
commandCode:string
}
export type {
listMain,
listMainAPI,
OpType
}

View file

@ -1,5 +1,4 @@
interface officerType {
no: number;
id: string;
prefix: string;
firstName: string;