Commit 44e39976 authored by huyuchen's avatar huyuchen

huych-调试

parent fb5e15de
...@@ -40,7 +40,6 @@ import java.util.ArrayList; ...@@ -40,7 +40,6 @@ import java.util.ArrayList;
import java.util.HashMap; import java.util.HashMap;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import java.util.stream.Collectors;
/** /**
* 聚富通到账通知交易流水查询 * 聚富通到账通知交易流水查询
...@@ -135,9 +134,9 @@ public class IcbcTransactionFlowQueryServiceImpl extends ServiceImpl<EkpSocialIn ...@@ -135,9 +134,9 @@ public class IcbcTransactionFlowQueryServiceImpl extends ServiceImpl<EkpSocialIn
public R getIcbcTransactionFlowYesterdayInner() throws IcbcApiException { public R getIcbcTransactionFlowYesterdayInner() throws IcbcApiException {
log.info("开始推昨日新增网银到账明细条数"); log.info("开始推昨日新增网银到账明细条数");
String tranDate = DateUtil.addDay(-1).replace("-",""); String tranDate = DateUtil.addDay(-4).replace("-","");
String beginDate = tranDate; String beginDate = tranDate;
String endDate = tranDate; String endDate = DateUtil.addDay(1).replace("-","");;
return getIcbcTransactionFlowCommon(tranDate,beginDate,endDate); return getIcbcTransactionFlowCommon(tranDate,beginDate,endDate);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment