This commit is contained in:
chenyanchang
2026-06-16 14:49:50 +08:00
parent 666fde6ece
commit 3cf9beb513
2 changed files with 7 additions and 7 deletions

View File

@@ -160,7 +160,7 @@ public class BaseController
*/
protected AjaxResult toAjax(int rows)
{
return rows > 0 ? AjaxResult.success() : AjaxResult.error();
return rows > 0 ? AjaxResult.success(rows) : AjaxResult.error();
}
/**