|
@@ -768,11 +768,11 @@ public class StoreInfoController {
|
|
|
@ApiOperation(value = "AI服务-门头识别")
|
|
@ApiOperation(value = "AI服务-门头识别")
|
|
|
@ApiOperationSupport(order = 16)
|
|
@ApiOperationSupport(order = 16)
|
|
|
@ApiImplicitParams({
|
|
@ApiImplicitParams({
|
|
|
- @ApiImplicitParam(name = "storeId", value = "门店用户id", dataType = "String", paramType = "query", required = true),
|
|
|
|
|
|
|
+ @ApiImplicitParam(name = "storeUserId", value = "门店用户id", dataType = "String", paramType = "query", required = true),
|
|
|
@ApiImplicitParam(name = "imageUrl", value = "图片URL", dataType = "String", paramType = "query", required = true)
|
|
@ApiImplicitParam(name = "imageUrl", value = "图片URL", dataType = "String", paramType = "query", required = true)
|
|
|
})
|
|
})
|
|
|
@GetMapping("/getStoreOcrData")
|
|
@GetMapping("/getStoreOcrData")
|
|
|
- public R<Map<String, Object>> getStoreOcrData(@RequestParam("storeId") String storeUserId,
|
|
|
|
|
|
|
+ public R<Map<String, Object>> getStoreOcrData(@RequestParam("storeUserId") String storeUserId,
|
|
|
@RequestParam("imageUrl") String imageUrl) {
|
|
@RequestParam("imageUrl") String imageUrl) {
|
|
|
log.info("StoreInfoController.getStoreOcrData?storeId={},imageUrl={}", storeUserId, imageUrl);
|
|
log.info("StoreInfoController.getStoreOcrData?storeId={},imageUrl={}", storeUserId, imageUrl);
|
|
|
if (storeUserId == null || storeUserId.trim().isEmpty() || imageUrl == null || imageUrl.trim().isEmpty()) {
|
|
if (storeUserId == null || storeUserId.trim().isEmpty() || imageUrl == null || imageUrl.trim().isEmpty()) {
|