diff --git a/src/controllers/ProfileAbilityEmployeeTempController.ts b/src/controllers/ProfileAbilityEmployeeTempController.ts index 915e52a9..ba566742 100644 --- a/src/controllers/ProfileAbilityEmployeeTempController.ts +++ b/src/controllers/ProfileAbilityEmployeeTempController.ts @@ -30,7 +30,7 @@ import permission from "../interfaces/permission"; @Route("api/v1/org/profile-temp/ability") @Tags("ProfileAbilityEmployee") @Security("bearerAuth") -export class ProfileAbilityEmployeeController extends Controller { +export class ProfileAbilityEmployeeTempController extends Controller { private profileEmployeeRepo = AppDataSource.getRepository(ProfileEmployee); private profileAbilityRepo = AppDataSource.getRepository(ProfileAbility); private profileAbilityHistoryRepo = AppDataSource.getRepository(ProfileAbilityHistory); diff --git a/src/controllers/ProfileAddressEmployeeTempController.ts b/src/controllers/ProfileAddressEmployeeTempController.ts index 76a24246..0a565840 100644 --- a/src/controllers/ProfileAddressEmployeeTempController.ts +++ b/src/controllers/ProfileAddressEmployeeTempController.ts @@ -31,7 +31,7 @@ import permission from "../interfaces/permission"; @Route("api/v1/org/profile-temp/address") @Tags("ProfileAddressEmployee") @Security("bearerAuth") -export class ProfileAddressEmployeeController extends Controller { +export class ProfileAddressEmployeeTempController extends Controller { private profileEmployeeRepo = AppDataSource.getRepository(ProfileEmployee); private profileAddressHistoryRepo = AppDataSource.getRepository(ProfileAddressHistory); diff --git a/src/controllers/ProfileAssessmentsEmployeeTempController.ts b/src/controllers/ProfileAssessmentsEmployeeTempController.ts index 9d68f241..5c0584bf 100644 --- a/src/controllers/ProfileAssessmentsEmployeeTempController.ts +++ b/src/controllers/ProfileAssessmentsEmployeeTempController.ts @@ -32,7 +32,7 @@ import permission from "../interfaces/permission"; @Route("api/v1/org/profile-temp/assessments") @Tags("ProfileEmployeeAssessments") @Security("bearerAuth") -export class ProfileAssessmentsEmployeeController extends Controller { +export class ProfileAssessmentsEmployeeTempController extends Controller { private profileEmployeeRepo = AppDataSource.getRepository(ProfileEmployee); private profileAssessmentsRepository = AppDataSource.getRepository(ProfileAssessment); private profileAssessmentsHistoryRepository = diff --git a/src/controllers/ProfileAvatarEmployeeTempController.ts b/src/controllers/ProfileAvatarEmployeeTempController.ts index d6d7940c..2527809d 100644 --- a/src/controllers/ProfileAvatarEmployeeTempController.ts +++ b/src/controllers/ProfileAvatarEmployeeTempController.ts @@ -10,7 +10,7 @@ import permission from "../interfaces/permission"; @Route("api/v1/org/profile-temp/avatar") @Tags("ProfileAvatar") @Security("bearerAuth") -export class ProfileAvatarEmployeeController extends Controller { +export class ProfileAvatarEmployeeTempController extends Controller { private profileRepository = AppDataSource.getRepository(ProfileEmployee); private avatarRepository = AppDataSource.getRepository(ProfileAvatar); diff --git a/src/controllers/ProfileCertificateEmployeeTempController.ts b/src/controllers/ProfileCertificateEmployeeTempController.ts index 2a07d7b9..5125e2eb 100644 --- a/src/controllers/ProfileCertificateEmployeeTempController.ts +++ b/src/controllers/ProfileCertificateEmployeeTempController.ts @@ -28,7 +28,7 @@ import permission from "../interfaces/permission"; @Route("api/v1/org/profile-temp/certificate") @Tags("ProfileEmployeeCertificate") @Security("bearerAuth") -export class ProfileCertificateEmployeeController extends Controller { +export class ProfileCertificateEmployeeTempController extends Controller { private profileEmployeeRepo = AppDataSource.getRepository(ProfileEmployee); private certificateRepo = AppDataSource.getRepository(ProfileCertificate); private certificateHistoryRepo = AppDataSource.getRepository(ProfileCertificateHistory); diff --git a/src/controllers/ProfileChangeNameEmployeeTempController.ts b/src/controllers/ProfileChangeNameEmployeeTempController.ts index 60e08c19..721737d9 100644 --- a/src/controllers/ProfileChangeNameEmployeeTempController.ts +++ b/src/controllers/ProfileChangeNameEmployeeTempController.ts @@ -30,7 +30,7 @@ import permission from "../interfaces/permission"; @Route("api/v1/org/profile-temp/changeName") @Tags("ProfileChangeNameEmployee") @Security("bearerAuth") -export class ProfileChangeNameEmployeeController extends Controller { +export class ProfileChangeNameEmployeeTempController extends Controller { private profileEmployeeRepo = AppDataSource.getRepository(ProfileEmployee); private changeNameRepository = AppDataSource.getRepository(ProfileChangeName); private changeNameHistoryRepository = AppDataSource.getRepository(ProfileChangeNameHistory); diff --git a/src/controllers/ProfileChildrenEmployeeTempController.ts b/src/controllers/ProfileChildrenEmployeeTempController.ts index 8d5470f8..3cf88256 100644 --- a/src/controllers/ProfileChildrenEmployeeTempController.ts +++ b/src/controllers/ProfileChildrenEmployeeTempController.ts @@ -31,7 +31,7 @@ import permission from "../interfaces/permission"; @Route("api/v1/org/profile-temp/family/children") @Tags("ProfileChildren") @Security("bearerAuth") -export class ProfileChildrenEmployeeController extends Controller { +export class ProfileChildrenEmployeeTempController extends Controller { private profileRepository = AppDataSource.getRepository(ProfileEmployee); private childrenRepository = AppDataSource.getRepository(ProfileChildren); private childrenHistoryRepository = AppDataSource.getRepository(ProfileChildrenHistory); diff --git a/src/controllers/ProfileDisciplineEmployeeTempController.ts b/src/controllers/ProfileDisciplineEmployeeTempController.ts index d45acf4d..99eae4c0 100644 --- a/src/controllers/ProfileDisciplineEmployeeTempController.ts +++ b/src/controllers/ProfileDisciplineEmployeeTempController.ts @@ -28,7 +28,7 @@ import permission from "../interfaces/permission"; @Route("api/v1/org/profile-temp/discipline") @Tags("ProfileDisciplineEmployee") @Security("bearerAuth") -export class ProfileDisciplineEmployeeController extends Controller { +export class ProfileDisciplineEmployeeTempController extends Controller { private profileRepository = AppDataSource.getRepository(ProfileEmployee); private disciplineRepository = AppDataSource.getRepository(ProfileDiscipline); private disciplineHistoryRepository = AppDataSource.getRepository(ProfileDisciplineHistory); diff --git a/src/controllers/ProfileDutyEmployeeTempController.ts b/src/controllers/ProfileDutyEmployeeTempController.ts index 8f09b8f1..49f2958a 100644 --- a/src/controllers/ProfileDutyEmployeeTempController.ts +++ b/src/controllers/ProfileDutyEmployeeTempController.ts @@ -24,7 +24,7 @@ import permission from "../interfaces/permission"; @Route("api/v1/org/profile-temp/duty") @Tags("ProfileEmployeeDuty") @Security("bearerAuth") -export class ProfileDutyEmployeeController extends Controller { +export class ProfileDutyEmployeeTempController extends Controller { private profileRepository = AppDataSource.getRepository(ProfileEmployee); private dutyRepository = AppDataSource.getRepository(ProfileDuty); private dutyHistoryRepository = AppDataSource.getRepository(ProfileDutyHistory); diff --git a/src/controllers/ProfileEducationsEmployeeTempController.ts b/src/controllers/ProfileEducationsEmployeeTempController.ts index 33da79d6..ea2db787 100644 --- a/src/controllers/ProfileEducationsEmployeeTempController.ts +++ b/src/controllers/ProfileEducationsEmployeeTempController.ts @@ -34,7 +34,7 @@ import permission from "../interfaces/permission"; @Route("api/v1/org/profile-temp/educations") @Tags("ProfileEducationsEmployee") @Security("bearerAuth") -export class ProfileEducationsEmployeeController extends Controller { +export class ProfileEducationsEmployeeTempController extends Controller { private profileEmployeeRepo = AppDataSource.getRepository(ProfileEmployee); private profileEducationRepo = AppDataSource.getRepository(ProfileEducation); private profileEducationHistoryRepo = AppDataSource.getRepository(ProfileEducationHistory); diff --git a/src/controllers/ProfileEmployeeTempController.ts b/src/controllers/ProfileEmployeeTempController.ts index 107ce19a..88cec120 100644 --- a/src/controllers/ProfileEmployeeTempController.ts +++ b/src/controllers/ProfileEmployeeTempController.ts @@ -74,7 +74,7 @@ import permission from "../interfaces/permission"; "เกิดข้อผิดพลาด ไม่สามารถแสดงรายการได้ กรุณาลองใหม่ในภายหลัง", ) @SuccessResponse(HttpStatus.OK, "สำเร็จ") -export class ProfileEmployeeController extends Controller { +export class ProfileEmployeeTempController extends Controller { private orgRevisionRepo = AppDataSource.getRepository(OrgRevision); private posMasterRepo = AppDataSource.getRepository(EmployeePosMaster); private profileRepo = AppDataSource.getRepository(ProfileEmployee); diff --git a/src/controllers/ProfileFamilyCoupleEmployeeTempController.ts b/src/controllers/ProfileFamilyCoupleEmployeeTempController.ts index ec3b5294..947befca 100644 --- a/src/controllers/ProfileFamilyCoupleEmployeeTempController.ts +++ b/src/controllers/ProfileFamilyCoupleEmployeeTempController.ts @@ -29,7 +29,7 @@ import permission from "../interfaces/permission"; @Route("api/v1/org/profile-temp/family/couple") @Tags("ProfileEmployeeFamilyCouple") @Security("bearerAuth") -export class ProfileFamilyCoupleEmployeeController extends Controller { +export class ProfileFamilyCoupleEmployeeTempController extends Controller { private profileRepo = AppDataSource.getRepository(ProfileEmployee); private ProfileFamilyCouple = AppDataSource.getRepository(ProfileFamilyCouple); private ProfileFamilyCoupleHistory = AppDataSource.getRepository(ProfileFamilyCoupleHistory); diff --git a/src/controllers/ProfileFamilyFatherEmployeeTempController.ts b/src/controllers/ProfileFamilyFatherEmployeeTempController.ts index bddb2c5f..9c9c30ed 100644 --- a/src/controllers/ProfileFamilyFatherEmployeeTempController.ts +++ b/src/controllers/ProfileFamilyFatherEmployeeTempController.ts @@ -29,7 +29,7 @@ import permission from "../interfaces/permission"; @Route("api/v1/org/profile-temp/family/father") @Tags("ProfileEmployeeFamilyFather") @Security("bearerAuth") -export class ProfileFamilyFatherEmployeeController extends Controller { +export class ProfileFamilyFatherEmployeeTempController extends Controller { private profileRepo = AppDataSource.getRepository(ProfileEmployee); private ProfileFamilyFather = AppDataSource.getRepository(ProfileFamilyFather); private ProfileFamilyFatherHistory = AppDataSource.getRepository(ProfileFamilyFatherHistory); diff --git a/src/controllers/ProfileFamilyMotherEmployeeTempController.ts b/src/controllers/ProfileFamilyMotherEmployeeTempController.ts index 49efbb75..0bbbe348 100644 --- a/src/controllers/ProfileFamilyMotherEmployeeTempController.ts +++ b/src/controllers/ProfileFamilyMotherEmployeeTempController.ts @@ -29,7 +29,7 @@ import permission from "../interfaces/permission"; @Route("api/v1/org/profile-temp/family/mother") @Tags("ProfileEmployeeFamilyMother") @Security("bearerAuth") -export class ProfileFamilyMotherEmployeeController extends Controller { +export class ProfileFamilyMotherEmployeeTempController extends Controller { private profileRepo = AppDataSource.getRepository(ProfileEmployee); private ProfileFamilyMother = AppDataSource.getRepository(ProfileFamilyMother); private ProfileFamilyMotherHistory = AppDataSource.getRepository(ProfileFamilyMotherHistory); diff --git a/src/controllers/ProfileGovernmentEmployeeTempController.ts b/src/controllers/ProfileGovernmentEmployeeTempController.ts index 02e25174..e5f77de2 100644 --- a/src/controllers/ProfileGovernmentEmployeeTempController.ts +++ b/src/controllers/ProfileGovernmentEmployeeTempController.ts @@ -30,7 +30,7 @@ import permission from "../interfaces/permission"; @Route("api/v1/org/profile-temp/government") @Tags("ProfileEmployeeGovernment") @Security("bearerAuth") -export class ProfileGovernmentEmployeeController extends Controller { +export class ProfileGovernmentEmployeeTempController extends Controller { private profileEmployeeRepo = AppDataSource.getRepository(ProfileEmployee); private govRepo = AppDataSource.getRepository(ProfileGovernment); private positionRepo = AppDataSource.getRepository(EmployeePosition); diff --git a/src/controllers/ProfileHonorEmployeeTempController.ts b/src/controllers/ProfileHonorEmployeeTempController.ts index 7d50a3a7..9965e006 100644 --- a/src/controllers/ProfileHonorEmployeeTempController.ts +++ b/src/controllers/ProfileHonorEmployeeTempController.ts @@ -28,7 +28,7 @@ import permission from "../interfaces/permission"; @Route("api/v1/org/profile-temp/honor") @Tags("ProfileEmployeeHonor") @Security("bearerAuth") -export class ProfileHonorEmployeeController extends Controller { +export class ProfileHonorEmployeeTempController extends Controller { private profileEmployeeRepo = AppDataSource.getRepository(ProfileEmployee); private honorRepo = AppDataSource.getRepository(ProfileHonor); private honorHistoryRepo = AppDataSource.getRepository(ProfileHonorHistory); diff --git a/src/controllers/ProfileInsigniaEmployeeTempController.ts b/src/controllers/ProfileInsigniaEmployeeTempController.ts index 4f927a6b..1d4ab598 100644 --- a/src/controllers/ProfileInsigniaEmployeeTempController.ts +++ b/src/controllers/ProfileInsigniaEmployeeTempController.ts @@ -29,7 +29,7 @@ import permission from "../interfaces/permission"; @Route("api/v1/org/profile-temp/insignia") @Tags("ProfileEmployeeInsignia") @Security("bearerAuth") -export class ProfileInsigniaEmployeeController extends Controller { +export class ProfileInsigniaEmployeeTempController extends Controller { private profileEmployeeRepo = AppDataSource.getRepository(ProfileEmployee); private insigniaRepo = AppDataSource.getRepository(ProfileInsignia); private insigniaHistoryRepo = AppDataSource.getRepository(ProfileInsigniaHistory); diff --git a/src/controllers/ProfileLeaveEmployeeTempController.ts b/src/controllers/ProfileLeaveEmployeeTempController.ts index 6c295e6c..7bd4812a 100644 --- a/src/controllers/ProfileLeaveEmployeeTempController.ts +++ b/src/controllers/ProfileLeaveEmployeeTempController.ts @@ -29,7 +29,7 @@ import permission from "../interfaces/permission"; @Route("api/v1/org/profile-temp/leave") @Tags("ProfileLeave") @Security("bearerAuth") -export class ProfileLeaveEmployeeController extends Controller { +export class ProfileLeaveEmployeeTempController extends Controller { private profileRepo = AppDataSource.getRepository(ProfileEmployee); private leaveRepo = AppDataSource.getRepository(ProfileLeave); private leaveHistoryRepo = AppDataSource.getRepository(ProfileLeaveHistory); diff --git a/src/controllers/ProfileNopaidEmployeeTempController.ts b/src/controllers/ProfileNopaidEmployeeTempController.ts index 4db7982b..d3fec7d7 100644 --- a/src/controllers/ProfileNopaidEmployeeTempController.ts +++ b/src/controllers/ProfileNopaidEmployeeTempController.ts @@ -28,7 +28,7 @@ import permission from "../interfaces/permission"; @Route("api/v1/org/profile-temp/nopaid") @Tags("ProfileNopaid") @Security("bearerAuth") -export class ProfileNopaidEmployeeController extends Controller { +export class ProfileNopaidEmployeeTempController extends Controller { private profileRepository = AppDataSource.getRepository(ProfileEmployee); private nopaidRepository = AppDataSource.getRepository(ProfileNopaid); private nopaidHistoryRepository = AppDataSource.getRepository(ProfileNopaidHistory); diff --git a/src/controllers/ProfileOtherEmployeeTempController.ts b/src/controllers/ProfileOtherEmployeeTempController.ts index 56cbb067..e164d56e 100644 --- a/src/controllers/ProfileOtherEmployeeTempController.ts +++ b/src/controllers/ProfileOtherEmployeeTempController.ts @@ -28,7 +28,7 @@ import permission from "../interfaces/permission"; @Route("api/v1/org/profile-temp/other") @Tags("ProfileOther") @Security("bearerAuth") -export class ProfileOtherEmployeeController extends Controller { +export class ProfileOtherEmployeeTempController extends Controller { private profileRepository = AppDataSource.getRepository(ProfileEmployee); private otherRepository = AppDataSource.getRepository(ProfileOther); private otherHistoryRepository = AppDataSource.getRepository(ProfileOtherHistory); diff --git a/src/controllers/ProfileSalaryEmployeeTempController.ts b/src/controllers/ProfileSalaryEmployeeTempController.ts index 1570ec39..1b53016a 100644 --- a/src/controllers/ProfileSalaryEmployeeTempController.ts +++ b/src/controllers/ProfileSalaryEmployeeTempController.ts @@ -29,7 +29,7 @@ import permission from "../interfaces/permission"; @Route("api/v1/org/profile-temp/salary") @Tags("ProfileSalary") @Security("bearerAuth") -export class ProfileSalaryEmployeeController extends Controller { +export class ProfileSalaryEmployeeTempController extends Controller { private profileRepo = AppDataSource.getRepository(ProfileEmployee); private salaryRepo = AppDataSource.getRepository(ProfileSalary); private salaryHistoryRepo = AppDataSource.getRepository(ProfileSalaryHistory); diff --git a/src/controllers/ProfileTrainingEmployeeTempController.ts b/src/controllers/ProfileTrainingEmployeeTempController.ts index 3d7c618a..0eddb100 100644 --- a/src/controllers/ProfileTrainingEmployeeTempController.ts +++ b/src/controllers/ProfileTrainingEmployeeTempController.ts @@ -28,7 +28,7 @@ import permission from "../interfaces/permission"; @Route("api/v1/org/profile-temp/training") @Tags("ProfileEmployeeTraining") @Security("bearerAuth") -export class ProfileTrainingEmployeeController extends Controller { +export class ProfileTrainingEmployeeTempController extends Controller { private profileEmployeeRepo = AppDataSource.getRepository(ProfileEmployee); private trainingRepo = AppDataSource.getRepository(ProfileTraining); private trainingHistoryRepo = AppDataSource.getRepository(ProfileTrainingHistory);