|
@@ -968,10 +968,11 @@ public class RWDLoadUtil {
|
|
|
String force_feedback = ExcelCommonUtil.getContentInner(sheet, "强制模式反馈", i);
|
|
|
{
|
|
|
JSONObject pointListItem = new JSONObject();
|
|
|
+ pointListItem.put("sequenceNo", i);
|
|
|
pointListItem.put("equipTypeName", equipTypeName);
|
|
|
pointListItem.put("infoCode", infoCode);
|
|
|
- pointListItem.put("isControlParam", (infoType != null && infoType.equals("设定参数")) ? true : false);
|
|
|
- pointListItem.put("isRunParam", (infoType != null && infoType.equals("运行参数")) ? true : false);
|
|
|
+ pointListItem.put("infoType", infoType);
|
|
|
+ pointListItem.put("isVisible", (infoType != null && infoType.equals("运行参数")||infoType.equals("设定参数")) ? true : false);
|
|
|
pointListItem.put("isBatchControlParam", (isBatchControlParam != null && isBatchControlParam.equals("Y")) ? true : false);
|
|
|
pointListItem.put("isKeyPoint", (isKeyPoint != null && isKeyPoint.equals("Y")) ? true : false);
|
|
|
InfoPointListArray.add(pointListItem);
|