public string DeleteSpecialRequest(int id) { int count = dal.DeleteSpecialRequest(id); if (count == 1) { return(null); } return("删除失败"); }