提交成交量

This commit is contained in:
zhouyl
2023-12-20 21:01:28 +08:00
parent 0269e6632f
commit 0c41d65eeb
2 changed files with 11 additions and 1 deletions

View File

@@ -61,7 +61,16 @@ public class StockVO {
private String monthImg;
private Integer depositAmt;
private String volume;
public String getVolume() {
return volume;
}
public void setVolume(String volume) {
this.volume = volume;
}
public static StockVO from(StockDetail detail, Stock stock) {
StockVO vo = new StockVO();
if(stock != null) {

View File

@@ -76,6 +76,7 @@ public class IndiaStockVO {
vo.setToday_min(low);
vo.setOpen_px(open);
vo.setPreclose_px(close);
vo.setVolume(volume);
return vo;
}
}