-
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
실시간 차트 엔티티 설계 #20
실시간 차트 엔티티 설계 #20
Conversation
-조회된 실시간 주식시세 데이터를 데이터베이스에 저장하는 로직 추가
- 불필요한 컬럼 삭제
@@ -0,0 +1,9 @@ | |||
package com.flab.mars.db.entity; | |||
|
|||
public enum PriceDataType { |
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.
우선은 "분" 단위 데이터만 다룬다고 가정하시는건 어때요??
그 이후에 다른 단위 데이터로 확장하는 것도 좋아 보입니다
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.
넵 우선은 분단위만 다룬다고 가정하고 작업하겠습니다!
@Data | ||
@NoArgsConstructor | ||
@AllArgsConstructor | ||
public class KisPriceResponseVO extends BaseResponseVO { |
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.
우선은 모든 응답 필드를 다 처리하기보단 저희 도메인에 필요한 데이터만 취급하시죠~
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.
네넹~
Close #18