public ActionResult DeleteGoodsType(string id) { //删除数据 string strErrText; DDSystem dd = new DDSystem(); if (dd.DeleteGoodsType(long.Parse(id), LoginAccountId, LoginStaffName, out strErrText)) { return(Json(string.Empty)); } else { return(Json(strErrText)); } }