public IActionResult SelectAll() { try { return(Json(new { table = _repository.LoadListAll(), state = "0", msg = "操作成功!" })); } catch (Exception ex) { return(Json(new { state = "-1", msg = "非法操作!" })); } }