Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Task 간 “선후 관계”를 관리합니다.

### 1. 작업(Task) 관리 API

* **작업 생성**: 제목/설명/마감일/중요도/난이도[Fibonacci]/TaskType/의존 관계 입력
* **작업 생성**: 제목/설명/마감일/중요도/난이도[Fibonacci]/의존 관계 입력
* **작업 조회·상세**: 회원별 작업 목록 및 단건 조회
* **작업 수정 (PATCH)**: 변경 필드만 부분 업데이트(패치 객체로 null 덮어쓰기 방지)
* **작업 완료/되돌리기**: 완료 ↔ 미완료 상태 전환
Expand Down
34 changes: 17 additions & 17 deletions docs/001일정과 작업 분리/Task와 Schedule 분리.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,27 +27,27 @@
## Task와 Schedule 의 도메인 상태 분리

- Task
- id
- title
- description
- dueDate
- isCompleted
- ImportanceConstraint
- TemporalConstraint
- id
- title
- description
- dueDate
- isCompleted
- ImportanceConstraint
- TemporalConstraint
- inboundTaskCount
- createdAt
- updatedAt
- createdAt
- updatedAt

- Schedule
- id
- title
- description
- designatedStartTime
- id
- title
- description
- designatedStartTime
- scheduleType (기존 TaskType)
- state (예: 예정, 진행 중, 일시 정지, 완료)
- ScheduleHistory
- createdAt
- updatedAt
- state (예: 예정, 진행 중, 일시 정지, 완료)
- ScheduleHistory
- createdAt
- updatedAt

> Dependency는 Task 기반으로 각 작업의 우선순위를 정하는 데 사용

Expand Down