Commit 8b6664c8 authored by 曹盼盼's avatar 曹盼盼

修改

parent 517be623
...@@ -400,6 +400,7 @@ public class EquipmentCategoryServiceImpl extends BaseService<EquipmentCategoryD ...@@ -400,6 +400,7 @@ public class EquipmentCategoryServiceImpl extends BaseService<EquipmentCategoryD
JSONObject object = new JSONObject(); JSONObject object = new JSONObject();
object.put("level", companyModel.getLevel()); object.put("level", companyModel.getLevel());
object.put("orgCode", companyModel.getOrgCode()); object.put("orgCode", companyModel.getOrgCode());
object.put("companyCode", companyModel.getCompanyCode());
return object; return object;
} }
...@@ -422,10 +423,12 @@ public class EquipmentCategoryServiceImpl extends BaseService<EquipmentCategoryD ...@@ -422,10 +423,12 @@ public class EquipmentCategoryServiceImpl extends BaseService<EquipmentCategoryD
JSONObject object = getCompanyType(); JSONObject object = getCompanyType();
String level = object.getString("level"); String level = object.getString("level");
String code = object.getString("orgCode"); String code = object.getString("orgCode");
String companyCode = object.getString("companyCode");
if (!ValidationUtil.isEmpty(level)) { if (!ValidationUtil.isEmpty(level)) {
if (LEVEL.equals(level)) { if (LEVEL.equals(level)) {
//企业 //企业
map.put("USE_UNIT_CREDIT_CODE", code); map.put("USE_UNIT_CREDIT_CODE", companyCode);
model = idxFeignService.getPage(map); model = idxFeignService.getPage(map);
} else { } else {
//监管单位 //监管单位
......
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