|
|
@@ -119,7 +119,7 @@ public class GasDetectionController {
|
|
119
|
119
|
MultiValueMap<String, String> requestEntity = new LinkedMultiValueMap<>();
|
|
120
|
120
|
requestEntity.add("storeCode", storeCode);
|
|
121
|
121
|
return remoteControlUtil.remoteScan(
|
|
122
|
|
- String.format("%s%s", url, remoteControlUtil.chooseCFCode),
|
|
|
122
|
+ String.format("%s%s", url, remoteControlUtil.nowGasDetection),
|
|
123
|
123
|
requestEntity, "POST", null
|
|
124
|
124
|
);
|
|
125
|
125
|
}
|
|
|
@@ -146,7 +146,7 @@ public class GasDetectionController {
|
|
146
|
146
|
MultiValueMap<String, String> requestEntity = new LinkedMultiValueMap<>();
|
|
147
|
147
|
requestEntity.add("vCfCode", vCfCode);
|
|
148
|
148
|
return remoteControlUtil.remoteScan(
|
|
149
|
|
- String.format("%s%s", url, remoteControlUtil.foodOnly),
|
|
|
149
|
+ String.format("%s%s", url, remoteControlUtil.gasOnly),
|
|
150
|
150
|
requestEntity, "POST", null);
|
|
151
|
151
|
|
|
152
|
152
|
}
|
|
|
@@ -168,7 +168,7 @@ public class GasDetectionController {
|
|
168
|
168
|
Map<String, String> requestEntity = new HashMap<>();
|
|
169
|
169
|
requestEntity.put("orgId", orgId);
|
|
170
|
170
|
return remoteControlUtil.remoteScan(
|
|
171
|
|
- String.format("%s%s", url, remoteControlUtil.foodAll),
|
|
|
171
|
+ String.format("%s%s", url, remoteControlUtil.gasAll),
|
|
172
|
172
|
null, "GET", requestEntity
|
|
173
|
173
|
);
|
|
174
|
174
|
|