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