提交修改

This commit is contained in:
quyixiao 2026-05-19 12:49:00 +08:00
parent 62db9af714
commit 104ea47d02

View File

@ -27,7 +27,6 @@ import java.util.Map;
@Slf4j @Slf4j
@RestController @RestController
@RequestMapping("/driving/license") @RequestMapping("/driving/license")
@NotIntercept
@SuppressWarnings("unchecked") @SuppressWarnings("unchecked")
public class RecognizeDrivingLicenseController extends BaseController { public class RecognizeDrivingLicenseController extends BaseController {
@ -44,7 +43,7 @@ public class RecognizeDrivingLicenseController extends BaseController {
} }
Map<String, Object> data = requestBaidu(getContent(bVehicleLicenseRequest)); Map<String, Object> data = requestBaidu(getContent(bVehicleLicenseRequest));
if (data == null) { if (data == null) {
return R.error("识别失败"); return R.error("行驶证识别");
} }
R<Object> result = R.ok(); R<Object> result = R.ok();