|
|
@@ -37,6 +37,7 @@ import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
import java.util.List;
|
|
|
+import java.util.Set;
|
|
|
|
|
|
@Validated
|
|
|
@RestController
|
|
|
@@ -251,6 +252,8 @@ public class BankNotarizeController extends BaseController {
|
|
|
if (CollectionUtil.isEmpty(list)) {
|
|
|
return ResponseDTO.error(ResultCode.RESULT_DATA_NONE);
|
|
|
}
|
|
|
+ Set<String> keys = redisTemplate.keys("idCard*");
|
|
|
+ redisTemplate.delete(keys);
|
|
|
return ResponseDTO.success();
|
|
|
}
|
|
|
|