패키지 구조 수정 및 추가

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