[Feature] 공지사항 목록/상세 API 구현 #78
Labels
No Label
Priority
High
Priority
Low
Priority
Medium
Priority
Non
Priority
Urgent
Status
Available
Status
Done
Status
In Progress
Type
Bug
Type
Chore
Type
Design
Type
Documentation
Type
Feature
Type
Improvement
Type
Refactor
Type
Research
Type
Task
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: SPMS/SPMS_API#78
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 개요
API_Specification.md §1.1~1.2에 정의된 공지사항 목록/상세 API를 구현한다.
POST /v1/in/public/notice/list— 공지사항 목록 (페이징)POST /v1/in/public/notice/info— 공지사항 상세📐 API 명세
목록 API (PUBLIC_01)
{ page, size }(선택, 기본 1/20){ items: [{ notice_id, title, is_important, created_at }], pagination: { page, size, total_count, total_pages } }상세 API (PUBLIC_02)
{ notice_id }(필수){ notice_id, title, content, is_important, created_at }✅ 체크리스트
SPMS.Application/DTOs/Notice/— Request/Response DTO 생성SPMS.Domain/Interfaces/INoticeRepository.cs— Repository 인터페이스SPMS.Infrastructure/Persistence/Repositories/NoticeRepository.cs— Repository 구현SPMS.Application/Interfaces/INoticeService.cs— Service 인터페이스SPMS.Application/Services/NoticeService.cs— Service 구현SPMS.API/Controllers/NoticeController.cs— Controller 구현