feat : 실행계획 조회 수정(description 추가)

This commit is contained in:
lsh9672 2025-06-17 11:32:05 +09:00
parent 002adbed34
commit 6e1d9b2ff5
2 changed files with 2 additions and 0 deletions

View File

@ -41,6 +41,7 @@ public class ActionPlanService implements ActionPlanUseCase {
.map(plan -> ActionPlanListResponse.builder()
.id(plan.getId())
.title(plan.getTitle())
.description(plan.getDescription())
.status(plan.getStatus())
.period(plan.getPeriod())
.createdAt(plan.getCreatedAt())

View File

@ -20,6 +20,7 @@ public class ActionPlanListResponse {
private Long id;
private String title;
private PlanStatus status;
private String description;
private String period;
private LocalDateTime createdAt;
private LocalDateTime completedAt;