프로젝트 임포트 JSON 가이드 업데이트

- Task: is_urgent, assignee_id 필드 추가
- Issue: start_date, due_date, estimated_hours, is_urgent 필드 추가
- Issue: department_id, team, assignee_id, assignee_name, client 필드 추가
- 이슈 상태, 담당자/팀 하이브리드, 기타 필드 설명 추가
This commit is contained in:
2025-12-02 20:31:03 +09:00
parent 28b4ec8afd
commit fdf895e60e

View File

@@ -128,13 +128,24 @@ class="flex-1 px-4 py-2.5 text-sm font-medium text-white bg-indigo-600 rounded-l
"description": "작업 설명",
"status": "todo|in_progress|done",
"priority": "low|medium|high",
"is_urgent": false,
"due_date": "2025-01-15",
"assignee_id": null,
"issues": [
{
"title": "이슈 제목 (필수)",
"description": "이슈 설명",
"type": "bug|feature|improvement",
"status": "open|in_progress|resolved|closed"
"status": "open|in_progress|resolved|closed",
"start_date": "2025-01-01",
"due_date": "2025-01-15",
"estimated_hours": 8,
"is_urgent": false,
"department_id": null,
"team": "개발팀",
"assignee_id": null,
"assignee_name": "홍길동",
"client": "고객사명"
}
]
}
@@ -147,6 +158,7 @@ class="flex-1 px-4 py-2.5 text-sm font-medium text-white bg-indigo-600 rounded-l
{
"title": "추가할 작업",
"priority": "high",
"is_urgent": true,
"issues": [...]
}
]
@@ -190,6 +202,34 @@ class="flex-1 px-4 py-2.5 text-sm font-medium text-white bg-indigo-600 rounded-l
<li><code class="px-1 bg-gray-100 rounded">improvement</code> - 개선</li>
</ul>
</div>
<div>
<h4 class="font-medium text-gray-900">이슈 상태</h4>
<ul class="mt-1 ml-4 text-gray-600 list-disc">
<li><code class="px-1 bg-gray-100 rounded">open</code> - 대기중</li>
<li><code class="px-1 bg-gray-100 rounded">in_progress</code> - 처리중</li>
<li><code class="px-1 bg-gray-100 rounded">resolved</code> - 해결됨</li>
<li><code class="px-1 bg-gray-100 rounded">closed</code> - 종료</li>
</ul>
</div>
<div>
<h4 class="font-medium text-gray-900">담당자/ (하이브리드)</h4>
<ul class="mt-1 ml-4 text-gray-600 list-disc">
<li><code class="px-1 bg-gray-100 rounded">department_id</code> - 부서 ID (DB 연동)</li>
<li><code class="px-1 bg-gray-100 rounded">team</code> - 팀명 (문자열 직접 입력)</li>
<li><code class="px-1 bg-gray-100 rounded">assignee_id</code> - 담당자 ID (DB 연동)</li>
<li><code class="px-1 bg-gray-100 rounded">assignee_name</code> - 담당자명 (문자열)</li>
<li><code class="px-1 bg-gray-100 rounded">client</code> - 고객사명</li>
</ul>
</div>
<div>
<h4 class="font-medium text-gray-900">기타 필드</h4>
<ul class="mt-1 ml-4 text-gray-600 list-disc">
<li><code class="px-1 bg-gray-100 rounded">is_urgent</code> - 긴급 여부 (true/false)</li>
<li><code class="px-1 bg-gray-100 rounded">estimated_hours</code> - 예상 소요시간 (시간)</li>
<li><code class="px-1 bg-gray-100 rounded">start_date</code> - 시작일 (YYYY-MM-DD)</li>
<li><code class="px-1 bg-gray-100 rounded">due_date</code> - 마감일 (YYYY-MM-DD)</li>
</ul>
</div>
</div>
</div>
</div>