@@ -1504,4 +1504,9 @@ public class RMScontroller extends BaseRESTfulController {
public Map<String, Object> delOilPrice(@RequestBody(required = false) Map<String, Object> mapValue) {
return rmsFeign.delOilPrice(mapValue);
}
+
+ @PostMapping("/updateInnerCode")
+ public Map<String, Object> updateInnerCode(@RequestBody Map<String, Object> mapValue) {
+ return rmsFeign.updateInnerCode(mapValue);
+ }
@@ -779,6 +779,9 @@ public interface RmsFeign {
@PostMapping(value = "api/v1/rms/rmsoilprice/delOilPrice")
Map<String, Object> delOilPrice(@RequestBody(required = false) Map<String, Object> map);
+ @PostMapping(value = "/api/v1/rms/rmspersonnel/updateInnerCode")
+ Map<String, Object> updateInnerCode(@RequestBody Map<String, Object> mapValue);
@@ -36,7 +36,7 @@ openfeign:
OMSFeign:
url: ${OMSFEIGN_URL:172.16.90.214:8095}
RmsFeign:
- url: ${RMSFEIGN_URL:172.16.90.214:8060}
+ url: ${RMSFEIGN_URL:localhost:8060}
IntegrationFeign:
url: ${INTEGRATIONFEIGN_URL:172.16.90.214:8066}
OTMSFeign: