This commit is contained in:
shuo.wang
2025-04-29 20:13:43 +08:00
parent fcc86e38f0
commit 921447d672
6 changed files with 29 additions and 11 deletions

View File

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