no message
This commit is contained in:
@@ -33,7 +33,7 @@ public class QStockPO extends EntityPathBase<StockPO> {
|
||||
|
||||
public final StringPath stockCode = createString("stockCode");
|
||||
|
||||
public final NumberPath<Integer> stockExchangeId = createNumber("stockExchangeId", Integer.class);
|
||||
public final StringPath stockExchangeId = createString("stockExchangeId");
|
||||
|
||||
public final StringPath stockGid = createString("stockGid");
|
||||
|
||||
@@ -45,7 +45,7 @@ public class QStockPO extends EntityPathBase<StockPO> {
|
||||
|
||||
public final NumberPath<Integer> stockState = createNumber("stockState", Integer.class);
|
||||
|
||||
public final NumberPath<Integer> stockSymbol = createNumber("stockSymbol", Integer.class);
|
||||
public final StringPath stockSymbol = createString("stockSymbol");
|
||||
|
||||
public final StringPath stockType = createString("stockType");
|
||||
|
||||
|
||||
@@ -244,9 +244,9 @@ public class InvestingApis {
|
||||
item.put("volume", _ar.get(5));
|
||||
return item;
|
||||
}).filter(val -> {
|
||||
// if("min".equalsIgnoreCase(string)) {
|
||||
// return DateUtil.isSameDay(nowDate, new Date(val.getLong("date")));
|
||||
// }
|
||||
if("min".equalsIgnoreCase(string)) {
|
||||
return DateUtil.isSameDay(nowDate, new Date(val.getLong("date")));
|
||||
}
|
||||
return true;
|
||||
})
|
||||
.collect(Collectors.toList())
|
||||
|
||||
Reference in New Issue
Block a user