|
@@ -98,6 +98,8 @@ public class RWDDownloadUtil {
|
|
|
String feedback = ExcelCommonUtil.getContentInner(sheet, "控制反馈点编码", i);
|
|
|
String force = ExcelCommonUtil.getContentInner(sheet, "强制模式", i);
|
|
|
String force_feedback = ExcelCommonUtil.getContentInner(sheet, "强制模式反馈", i);
|
|
|
+ String infoStage = ExcelCommonUtil.getContentInner(sheet,"信息点阶段",i);
|
|
|
+ String isDefaultVisible=ExcelCommonUtil.getContentInner(sheet,"是否默认显示",i);
|
|
|
ibmsSceneCode = ibmsSceneCode == null ? null : ibmsSceneCode.trim();
|
|
|
ibmsClassCode = ibmsClassCode == null ? null : ibmsClassCode.trim();
|
|
|
infoType = infoType == null ? null : infoType.trim();
|
|
@@ -110,6 +112,8 @@ public class RWDDownloadUtil {
|
|
|
feedback = feedback == null ? null : feedback.trim();
|
|
|
force = force == null ? null : force.trim();
|
|
|
force_feedback = force_feedback == null ? null : force_feedback.trim();
|
|
|
+ infoStage=infoStage==null?null:infoStage.trim();
|
|
|
+ isDefaultVisible=isDefaultVisible==null?null:isDefaultVisible.trim();
|
|
|
if (ibmsSceneCode == null || ibmsSceneCode.length() == 0) {
|
|
|
continue;
|
|
|
}
|
|
@@ -146,6 +150,8 @@ public class RWDDownloadUtil {
|
|
|
pointListItem.put("isKeyPoint", (isKeyPoint != null && isKeyPoint.equals("Y")) ? true : false);
|
|
|
pointListItem.put("isBatchControlParam", (isBatchControlParam != null && isBatchControlParam.equals("Y")) ? true : false);
|
|
|
pointListItem.put("isVisible", (isVisible != null && isVisible.equals("Y")) ? true : false);
|
|
|
+ pointListItem.put("infoStage",infoStage!=null&&infoStage.length()>0?infoStage:null);
|
|
|
+ pointListItem.put("isDefaultVisible",(isDefaultVisible!=null&&isDefaultVisible.equals("Y"))?true:false);
|
|
|
InfoPointListArray.add(pointListItem);
|
|
|
}
|
|
|
{
|