*MotionMate Notification
(알림) 기능 구현*
Request
와 Response
로 Dto
구분NotificationMapper
클래스에서 Entity
, Dto
변환로직 구현Controller
계층 알림생성, 알림조회, 읽음처리, 전체읽음처리, ***삭제API
***구현Service
계층 비즈니스로직 처리Repository
계층에서 필요한 데이터 DB
에서 찾아오는 로직 구현NotificationRequestDto
(알림요청Dto
)NotificationResponseDto
(알림응답Dto
)NotificationMapper
(알림 Entity
, Dto
변환 클래스)NotificationController
(알림 컨트롤러 → API
)NotificationService
(알림 서비스 → 비즈니스로직)NotificationRepository
(알림 리포지토리 → DB
에서 필요데이터 찾아오기)