| | |
| | | /** Spring cron,默认每 5 秒 */ |
| | | private String cron = "0/5 * * * * ?"; |
| | | |
| | | /** GET 全路径,如 http://10.10.10.200:8088/station/getTaskNo?stationId=1007 */ |
| | | /** 全路径,如 http://10.10.10.200:8088/cv/station/getTaskNo */ |
| | | private String taskNoPollUrl = ""; |
| | | |
| | | /** true:POST JSON(默认);false:GET 原 URL */ |
| | | private boolean taskNoPollUsePost = true; |
| | | |
| | | /** 写入 Redis Hash 的 field,与 RCS 回调 staNo 一致 */ |
| | | private String taskNoStationId = "1007"; |
| | | |
| | | /** 全路径,如 http://10.10.10.200:8088/station/getError */ |
| | | /** 全路径,如 http://10.10.10.200:8088/cv/station/getError */ |
| | | private String errorPollUrl = ""; |
| | | |
| | | /** true:POST JSON {@code {"staNo": errorStationId}}(RCS 文档);false:GET 原 URL */ |
| | | /** true:POST JSON(默认);false:GET 原 URL */ |
| | | private boolean errorPollUsePost = true; |
| | | |
| | | /** 解析异常列表时默认站点号(写入报警前缀,见 RcsTvCallbackService 全角括号格式) */ |