public IActionResult Delete(int id) { bool b = AdsService.DeleteByIdSaved(id); return(ResultData(null, b, b ? "删除成功" : "删除失败")); }