-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature | CAKK-104 | 애그리거트 설계 및 구현 #231
Conversation
Test Results201 tests 201 ✅ 43s ⏱️ Results for commit c75a155. ♻️ This comment has been updated with latest results. |
Codecov ReportAll modified and coverable lines are covered by tests ✅ @@ Coverage Diff @@
## develop #231 +/- ##
=============================================
- Coverage 92.14% 90.19% -1.95%
+ Complexity 329 238 -91
=============================================
Files 109 59 -50
Lines 967 612 -355
Branches 34 17 -17
=============================================
- Hits 891 552 -339
+ Misses 58 51 -7
+ Partials 18 9 -9 Continue to review full report in Codecov by Sentry.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
일단 이렇게 설계하구 양방향 참조 관계를 다시 제거하는 쪽으로 가야겠네요 !
@YongsHub Entity에서 말씀하시는거죠? 도메인 모델은 양방향 참조가 없이 구현했는데, 리뷰 하면서 발견하신 부분이 있나해서요 ! |
cakk-domain/src/main/kotlin/com/cakk/domain/aggregate/user/User.kt
Outdated
Show resolved
Hide resolved
네네 엔티티요! |
CAKK-104
사전에 논의하여 설계한대로 애그리거트를 구현했습니다. 구체화 하는 과정에서
Domain
인지Value Object
인지 다음과 같은 기준으로 분류했습니다.추가적으로 다음과 같은 항목을 자세히 봐주세요.
예시로 User 도메인 객체 코드를 첨부합니다.