Commit 8e1683e6 authored by suhuiguang's avatar suhuiguang

fix(jyjc): 报检规则4.0开发

1.咸阳时增加西咸新区
parent 934ca0d6
...@@ -92,6 +92,12 @@ public interface BizCommonConstant { ...@@ -92,6 +92,12 @@ public interface BizCommonConstant {
/** /**
* 行政区划-咸阳
*/
String REGION_CODE_XY = "610400";
/**
* 空标识 * 空标识
*/ */
String NONE= "none"; String NONE= "none";
......
...@@ -1879,6 +1879,12 @@ public class JyjcInspectionApplicationServiceImpl extends BaseService<JyjcInspec ...@@ -1879,6 +1879,12 @@ public class JyjcInspectionApplicationServiceImpl extends BaseService<JyjcInspec
regionModel.setRegionName("雁塔区(除高新)"); regionModel.setRegionName("雁塔区(除高新)");
} }
}); });
} else if(BizCommonConstant.REGION_CODE_XY.equals(parentId)){
// 咸阳时增加西咸新区下拉
RegionModel regionModel = new RegionModel();
regionModel.setRegionCode(SpeRegionInfoEnum.XX.getCode());
regionModel.setRegionName(SpeRegionInfoEnum.XX.getName());
regionModels.add(regionModel);
} }
return regionModels; return regionModels;
} }
......
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