API
Employee APIs
DTO
EmployeeRequestDTO
EmployeeRequestDTOpublic class EmployeeRequestDTO {
private String name;
private String email;
private String phone;
private LocalDate hireDate;
private Long departmentId;
private AddressDTO address; // embedded sub-object
}EmployeeResponseDTO
EmployeeResponseDTOAddressDTO
AddressDTOController
Repository
Specification Class
Mapper Interface
Service Interface
Service Implementation
Department APIs
Controller
Service Interface
Service Implementation
Repository
DTO
DepartmentRequestDTO
DepartmentRequestDTODepartmentResponseDTO
DepartmentResponseDTOError Handling
Mapper Interface
Address APIs
Controller
Service Interface
Service Implementation
Mapper Interface
Repository
DTO
AddressRequestDTO.java
AddressRequestDTO.javaAddressResponseDTO.java
AddressResponseDTO.javaProject APIs
Controller
Service Interface
Service Implementation
Repository
Mapper Interface
DTO
ProjectRequestDTO.java
ProjectRequestDTO.javaProjectResponseDTO.java
ProjectResponseDTO.javaSpecifications
Relationship APIs
Controller
Service Interface
Service Implementation
Salary APIs
Controller
Service Interface
Service Implementation
Repository
MapStruct Mapper Interface
DTO
Specification for Filtering
Payment History APIs
Controller
Service Interface
Service Implementation
Repository
MapStruct Mapper Interface
DTO
PaymentHistoryRequestDTO.java
PaymentHistoryRequestDTO.javaPaymentHistoryResponseDTO.java
PaymentHistoryResponseDTO.javaSpecifications
Dashboard & Reports
1. GET /dashboard/summary
Controller
Service Interface
Service Implementation
DTO
Custom Query in Repository
2. GET /reports/salary-summary?year=2024
Controller
Service Interface
Service Implementation
DTO
Repository
3. GET /reports/department-overview
Controller
Service Interface
Service Implementation
DTO
Repository
Last updated