We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
📌 상세 설명
as is
to be
// move to Member public MemberEntity(SocialType socialType, String socialId) { this.socialType = socialType; this.socialId = socialId; this.basicCottonCount = 0; this.rainbowCottonCount = 0; } public MemberEntity(Member member) { this.socialType = member.getSocialInfo().getSocialType(); this.socialId = member.getSocialInfo().getSocialId(); this.basicCottonCount = member.getCottonInfo().getBasicCottonCount(); this.rainbowCottonCount = member.getCottonInfo().getRainbowCottonCount(); }
📝 체크리스트
The text was updated successfully, but these errors were encountered:
thguss
No branches or pull requests
📌 상세 설명
as is
: Entity 내 비즈니스 관련 생성자 존재to be
: 비즈니스 관련 생성자 도메인 VO로 이동📝 체크리스트
The text was updated successfully, but these errors were encountered: