数据处理

This commit is contained in:
shuo.wang
2025-05-28 15:32:23 +08:00
parent a5ad26928c
commit 521041447e
11 changed files with 121 additions and 12 deletions

View File

@@ -85,6 +85,12 @@ public class ShopAccountController {
return ResponseResult.success(accountService.handleAccountPassword());
}
@ApiOperation("密码数据处理3.0")
@GetMapping("/handleOldDataAccount")
public ResponseResult<Boolean> handleOldDataAccount() {
return ResponseResult.success(accountService.handleOldDataAccount());
}
}