Ejemplo n.º 1
0
 public ActionResult GetPlans(string number)
 {
     try
     {
         var res = _appointmentContract.GetPlans(number);
         return(Json(res, JsonRequestBehavior.AllowGet));
     }
     catch (Exception)
     {
         return(Json(OperationResult.Error("系统错误"), JsonRequestBehavior.AllowGet));
     }
 }