Beispiel #1
0
 public ActionResult List(PagedParam<VoucherQuery> queryCond)
 {
     var result = new VoucherService().List(queryCond);
     return Json(new AjaxResult("查询成功", AjaxResultType.Success, new { rows = result.ToList(), total = result.TotalItemCount }));
 }