패키지 구조 수정 및 추가

This commit is contained in:
2026-04-08 16:40:27 +09:00
parent 8a24288f1e
commit 68dccc10aa

View File

@@ -144,23 +144,28 @@ build/libs/ROOT.jar
## 📁 프로젝트 구조
### (2026-04-08 기준)
```bash
api-app
```
api-app # 메인 실행 모듈
├── app
│ └── src/main/java/com/cd/detection
│ ├── DabeeoDetectionApiApplication.java
├── config
│ ├── domain
│ │ ├── imagery
│ ├── labeling
│ │ ├── label
│ │ ├── model
│ │ ├── inference
│ │ ├── system
│ │ ── log
└── entity
│ ├── config # 설정 파일
│ │
├── domain # 도메인
│ │ ├── imagery # 영상 데이터 관리
│ │ ├── labeling # 라벨링 툴
│ │ ├── label # 라벨링 관리
│ │ ├── model # 모델관리
│ │ ── inference # 추론관리
│ ├── system # 시스템관리
│ │ └── log # 로그관리
│ │
│ ├── entity # 공용 JPA 엔티티 (DB 공통 사용)
│ │
│ └── repository # 공용 Repository (DB 공통 인터페이스/구현)
├── infrastructure-db-postgres
├── infrastructure-db-postgres # Postgres 전용 설정/확장
│ └── build.gradle
├── build.gradle