Commit e6f142b3fefd8d4bb92d2101ac46ee8ebf78b4a1

Authored by zhangmeiyang
1 parent 31863474

fix(storage): 修改重试接口路径

- 将 /retry/{id} 路径更正为 /retryError/{id}
- 保持接口功能不变,仅修正路径命名错误
tax-storage/src/main/java/com/diligrp/tax/storage/controller/MappingErrorApi.java
... ... @@ -40,7 +40,7 @@ public class MappingErrorApi {
40 40 * @param id 身份证
41 41 * @return {@link Message }<{@link ? }>
42 42 */
43   - @RequestMapping("/retry/{id}")
  43 + @RequestMapping("/retryError/{id}")
44 44 public Message<?> retry(@PathVariable("id") Long id) {
45 45 mappingErrorService.retry(id);
46 46 return Message.success();
... ...