|
@@ -8,7 +8,7 @@ import org.springframework.web.bind.annotation.PostMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
|
|
|
|
-@FeignClient(value = "4dkankan-center-platform", contextId = "platformGoodsClient")
|
|
|
+@FeignClient(value = "4dkankan-center-platform",contextId = "platformGoodsClient")
|
|
|
@RequestMapping("/platform/feign/goods")
|
|
|
public interface PlatformGoodsClient {
|
|
|
|
|
@@ -39,19 +39,4 @@ public interface PlatformGoodsClient {
|
|
|
*/
|
|
|
@PostMapping("/getCameraBySnCode")
|
|
|
ResultData<Camera> getCameraBySnCode(@RequestParam(value = "snCode", required = false) String snCode);
|
|
|
-
|
|
|
- /**
|
|
|
- *
|
|
|
- * @return Camera
|
|
|
- */
|
|
|
- @PostMapping("/getByChildNameAndChildPassword")
|
|
|
- ResultData<Camera> getByChildNameAndChildPassword(@RequestParam(value = "appUserName") String appUserName,
|
|
|
- @RequestParam(value = "appPassword") String appPassword);
|
|
|
-
|
|
|
- /**
|
|
|
- *
|
|
|
- * @return Camera
|
|
|
- */
|
|
|
- @PostMapping("/getCameraById")
|
|
|
- ResultData<Camera> getCameraById(@RequestParam(value = "cameraId") Long cameraId);
|
|
|
}
|