File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
src/main/java/com/fund/stockProject/experiment Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change 1010@ Builder
1111public class ExperimentStatusDetailResponse {
1212 private String symbolName ; // 종목명
13+ private Integer stockId ; // 종목 ID
1314 private double roi ; // 최종 수익률
1415 private String status ; // 거래 상태
1516 private List <TradeInfo > tradeInfos ; // 거래 내역
Original file line number Diff line number Diff line change @@ -295,6 +295,7 @@ public ExperimentStatusDetailResponse getExperimentStatusDetail(final Integer ex
295295 .roi (roi )
296296 .status (experiment .getStatus ())
297297 .symbolName (experiment .getStock ().getSymbolName ())
298+ .stockId (stock .getId ())
298299 .buyScore (buyScore )
299300 .currentScore (currentScore )
300301 .buyPrice (experiment .getBuyPrice ().intValue ())
@@ -334,6 +335,7 @@ public ExperimentStatusDetailResponse getExperimentStatusDetail(final Integer ex
334335 .roi (roi )
335336 .status (experiment .getStatus ())
336337 .symbolName (experiment .getStock ().getSymbolName ())
338+ .stockId (stock .getId ())
337339 .buyScore (buyScore )
338340 .currentScore (currentScore )
339341 .buyPrice (experiment .getBuyPrice ().intValue ())
You can’t perform that action at this time.
0 commit comments