提交成交量

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,6 +61,15 @@ public class StockVO {
private String monthImg; private String monthImg;
private Integer depositAmt; 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) { public static StockVO from(StockDetail detail, Stock stock) {
StockVO vo = new StockVO(); StockVO vo = new StockVO();

View File

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