This commit is contained in:
shuo.wang
2025-04-30 15:26:12 +08:00
parent bbd03472d9
commit ec046b09e0

View File

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