|
@@ -1,4 +1,8 @@
|
|
|
package com.steerinfo.dil.feign;
|
|
|
+import com.steerinfo.framework.controller.RESTfulResult;
|
|
|
+import io.swagger.annotations.ApiImplicitParam;
|
|
|
+import io.swagger.annotations.ApiImplicitParams;
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
import org.springframework.cloud.openfeign.FeignClient;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
@@ -133,4 +137,23 @@ public interface RmsFeign {
|
|
|
@GetMapping(value = "/api/v1/rms/rmscapacity/getCapacityId")
|
|
|
Map<String, Object> getCapacityId();
|
|
|
|
|
|
+ /**
|
|
|
+ * @author huk
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @PostMapping("/api/v1/rms/rmslinks/getLink")
|
|
|
+ Map<String, Object> getlink();
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @author huk
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ //新增运输路线
|
|
|
+ @ApiOperation(value="新增运输路线")
|
|
|
+ @ApiImplicitParams({
|
|
|
+ @ApiImplicitParam(name = "mapValue", value = "运输路线", required = false, dataType = "Map"),
|
|
|
+ })
|
|
|
+ @PostMapping("/api/v1/rms/rmslines/insertSelective")
|
|
|
+ Map<String, Object> insertSelective(@RequestBody(required = false) Map<String,Object> mapVal);
|
|
|
+
|
|
|
}
|