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
상세 내용 도메인JPA의 상속 전략(Inheritance Strategy)을 사용
: 현재 구조에서는 Detail 추상 클래스를 상속받는 LaundryDetail, RecyclingDetail 등의 구체적인 엔티티 클래스를 사용하고 있습
if (detail instanceof LaundryDetail) { // LaundryDetail 관련 로직 } else if (detail instanceof RecyclingDetail) { // RecyclingDetail 관련 로직 }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
📌 Description ( 작업 상세 내용 )
상세 내용 도메인JPA의 상속 전략(Inheritance Strategy)을 사용
현재 사용 중인 방식 (클래스 타입으로 구분)
: 현재 구조에서는 Detail 추상 클래스를 상속받는 LaundryDetail, RecyclingDetail 등의 구체적인 엔티티 클래스를 사용하고 있습
TODO
The text was updated successfully, but these errors were encountered: