Commit f52f125f authored by 张俊's avatar 张俊

单位开户、单位变更、单位销户协议修改

parent d6db3561
...@@ -58,15 +58,15 @@ public class UnitAccountOpeningInformation { ...@@ -58,15 +58,15 @@ public class UnitAccountOpeningInformation {
private String errmsg; private String errmsg;
private String dataStatus; private String data_status;
public String getDataStatus() { public String getData_status() {
return dataStatus; return data_status;
} }
public void setDataStatus(String dataStatus) { public void setData_status(String data_status) {
this.dataStatus = dataStatus; this.data_status = data_status;
} }
public String getBusId() { public String getBusId() {
......
...@@ -88,7 +88,7 @@ public class OpenAccountService { ...@@ -88,7 +88,7 @@ public class OpenAccountService {
List<UnitAccountOpeningInformation> deptInfoUpdateList = new ArrayList<>(); List<UnitAccountOpeningInformation> deptInfoUpdateList = new ArrayList<>();
List<UnitAccountOpeningInformation> deptLogoutList = new ArrayList<>(); List<UnitAccountOpeningInformation> deptLogoutList = new ArrayList<>();
for (UnitAccountOpeningInformation bill : bills) { for (UnitAccountOpeningInformation bill : bills) {
String dataStatus = bill.getDataStatus(); String dataStatus = bill.getData_status();
// 开户 // 开户
if (StringUtils.isEmpty(dataStatus) || dataStatus.equals("0")) { if (StringUtils.isEmpty(dataStatus) || dataStatus.equals("0")) {
openAccountList.add(bill); openAccountList.add(bill);
...@@ -444,7 +444,7 @@ public class OpenAccountService { ...@@ -444,7 +444,7 @@ public class OpenAccountService {
dwxxBg.setEconomicType("1"); dwxxBg.setEconomicType("1");
dwxxBg.setIndustryphy("E"); dwxxBg.setIndustryphy("E");
dwxxBg.setUnitPayDay("1"); dwxxBg.setUnitPayDay("1");
dwxxBg.setDataStatus("1"); dwxxBg.setData_status("1");
informationList.add(dwxxBg); informationList.add(dwxxBg);
// 单位销户 // 单位销户
UnitAccountOpeningInformation dwXh = new UnitAccountOpeningInformation(); UnitAccountOpeningInformation dwXh = new UnitAccountOpeningInformation();
...@@ -453,7 +453,7 @@ public class OpenAccountService { ...@@ -453,7 +453,7 @@ public class OpenAccountService {
dwXh.setEntName("红安县永利土石方工程有限公司"); dwXh.setEntName("红安县永利土石方工程有限公司");
dwXh.setDom("湖北省黄冈市红安县高桥镇长扬路东端北侧119号"); dwXh.setDom("湖北省黄冈市红安县高桥镇长扬路东端北侧119号");
dwXh.setOplocdistrict("421122"); dwXh.setOplocdistrict("421122");
dwXh.setDataStatus("2"); dwXh.setData_status("2");
informationList.add(dwXh); informationList.add(dwXh);
Json json = new Json(); Json json = new Json();
json.setData(informationList); json.setData(informationList);
......
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