Commit 3faadd44 authored by 华润's avatar 华润

内置机本地环境,测试环境,正式环境动态参数配置,方便切换和维护

parent 846fd74d
......@@ -181,8 +181,34 @@ public class ProvidentFundServicesController {
// System.out.println(""+bills);
//给参数赋值
// pstm.getString(1);
//421102
//421121
//421122
//421123
//421124
//421125
//421126
//421127
//421181
//421182
//421101
List<String> wo=new ArrayList<>();
wo.add("421102");
wo.add("421121");
wo.add("421122");
wo.add("421123");
wo.add("421124");
wo.add("421125");
wo.add("421126");
wo.add("421127");
wo.add("421181");
wo.add("421182");
wo.add("421101");
if (!bills.isEmpty()) {
for (UnitAccountOpeningInformation uniInfom : bills) {
if (!"".equals(uniInfom.getOplocdistrict()) && uniInfom.getOplocdistrict() != null) {
if(wo.contains(uniInfom.getOplocdistrict())){
System.out.println("oplocdistrict"+"在规定的值里面,调imp过程");
if (!"".equals(uniInfom.getBusId()) && uniInfom.getBusId() != null) {
pstm.setString(1, uniInfom.getBusId());
} else {
......@@ -308,7 +334,12 @@ public class ProvidentFundServicesController {
e.printStackTrace();
}
}
} else{
System.out.println("oplocdistrict"+"不在规定的值里面,不调imp过程");
}
}
}
pstm2.execute();
} else {
System.out.println("第三方返回的报文中data数据为空!");
......
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