updated format code

This commit is contained in:
Warunee Tamkoo 2024-09-03 11:28:01 +07:00
parent b75d69ea08
commit b14bad2249
241 changed files with 14012 additions and 13811 deletions

View file

@ -1,7 +1,5 @@
interface OpType {
commandCode: string
id: string
commandCode: string;
id: string;
}
export type {
OpType
};
export type { OpType };

View file

@ -22,7 +22,7 @@ interface listMain {
createdAt: Date;
amountOld: number;
positionDate: Date;
leaveDate: Date
leaveDate: Date;
}
//ข้อมูลจาก api
interface listMainAPI {
@ -48,8 +48,8 @@ interface listMainAPI {
statustext: string;
createdAt: Date;
amountOld: number;
positionDate: Date
leaveDate: Date
positionDate: Date;
leaveDate: Date;
}
interface OtherdataInterface {
@ -98,8 +98,8 @@ interface resApiData {
positionDate: Date;
avatar: string;
commandType: string;
militaryDate: Date
leaveDate: Date
militaryDate: Date;
leaveDate: Date;
};
};
}

View file

@ -5,10 +5,10 @@ interface ResponseData {
personalId: string;
selectStatus: boolean;
sequence: number;
refRecordId: string
salaryAmount:number|null
positionSalaryAmount:number|null
monthSalaryAmount:number|null
refRecordId: string;
salaryAmount: number | null;
positionSalaryAmount: number | null;
monthSalaryAmount: number | null;
}
interface ResponseOrganiz {

View file

@ -1,38 +1,38 @@
interface relocationType {
no:number,
id: string,
citizenId: "0000000000005",
prefix: string,
firstname: string,
lastname: string,
dateOfBirth: Date,
gender: string,
status: string,
recruitDate: Date,
positionNumber: number,
positionPath: string,
positionPathSide: string,
positionType: string,
positionLine: string,
positionLevel: string,
posNoId: string,
positionId: string,
positionPathSideId: string,
positionTypeId: string,
positionLineId: string,
positionLevelId: string,
organizationPositionId: string,
organizationName: string,
organizationShortName: string,
isActive: boolean,
reason: string,
educationOld: string,
salary: number,
positionTypeOld: string,
positionLevelOld: string,
positionNumberOld: string,
organizationPositionOld: string,
createdAt: Date
no: number;
id: string;
citizenId: "0000000000005";
prefix: string;
firstname: string;
lastname: string;
dateOfBirth: Date;
gender: string;
status: string;
recruitDate: Date;
positionNumber: number;
positionPath: string;
positionPathSide: string;
positionType: string;
positionLine: string;
positionLevel: string;
posNoId: string;
positionId: string;
positionPathSideId: string;
positionTypeId: string;
positionLineId: string;
positionLevelId: string;
organizationPositionId: string;
organizationName: string;
organizationShortName: string;
isActive: boolean;
reason: string;
educationOld: string;
salary: number;
positionTypeOld: string;
positionLevelOld: string;
positionNumberOld: string;
organizationPositionOld: string;
createdAt: Date;
}
export type { relocationType};
export type { relocationType };