返回操作成功多少条数据 Signed-off-by: 刘继东 <wwwliujidong@163.com>
@ -126,7 +126,7 @@ public class BaseController
*/
protected AjaxResult toAjax(int rows)
{
return rows > 0 ? AjaxResult.success() : AjaxResult.error();
return rows > 0 ? AjaxResult.success(rows) : AjaxResult.error();
}
/**