|
|
@@ -235,7 +235,10 @@ public class BankNotarizeController extends BaseController {
|
|
|
if (StringUtils.isEmpty(userName) || StringUtils.isEmpty(idCard)) {
|
|
|
return ResponseDTO.error(ResultCode.PARAM_IS_BLANK);
|
|
|
}
|
|
|
+
|
|
|
ResponseDTO<?> result = bankNotarizeService.onlineNotary(businessNo);
|
|
|
+ // 4---开始公证(待公证) -- 2个公证员,发送短信
|
|
|
+ smsTemplateService.startNotarize(businessNo);
|
|
|
if (!result.isSuccess()) {
|
|
|
return result;
|
|
|
}
|
|
|
@@ -260,8 +263,8 @@ public class BankNotarizeController extends BaseController {
|
|
|
public ResponseDTO<?> faceCompare(@RequestBody CompareImageVo compareImageVo){
|
|
|
ResponseDTO<?> result = bankNotarizeService.appFaceCompare(BeanCopyUtils.convertObj(compareImageVo, CompareImageDto.class));
|
|
|
if(result.isSuccess()) {
|
|
|
- // 4---开始公证(待公证) -- 2个公证员,发送短信
|
|
|
- smsTemplateService.startNotarize(compareImageVo.getBusinessNo());
|
|
|
+// // 4---开始公证(待公证) -- 2个公证员,发送短信
|
|
|
+// smsTemplateService.startNotarize(compareImageVo.getBusinessNo());
|
|
|
}
|
|
|
return result;
|
|
|
}
|