fengxiang
2018-09-27 c4aff381036d7a358fc443a558815a7d73bb5306
src/main/java/com/moral/controller/ScreenController.java
@@ -153,12 +153,19 @@
                    }else{
                  resultMap.put("type","government");
               }
               resultMap.put("areaCode",
                     organization.getVillageCode()|
                     organization.getTownCode()|
                     organization.getAreaCode()*1000000|
                     organization.getCityCode()*1000000|
                     organization.getProvinceCode()*1000000);
               Number areaCode = null;
               if(organization.getVillageCode()!=null){
                  areaCode = organization.getVillageCode();
               }else if (organization.getTownCode()!=null){
                  areaCode = organization.getTownCode();
               }else if(organization.getAreaCode()!=null) {
                  areaCode = organization.getAreaCode();
               }else if(organization.getCityCode()!=null) {
                  areaCode = organization.getCityCode();
               }else if(organization.getProvinceCode()!=null) {
                  areaCode = organization.getProvinceCode();
               }
               resultMap.put("areaCode",areaCode);
                }
                resultMap.put("mapPath",areaNamesBuilder.toString());
            }