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