You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

44 lines
1.2 KiB

  1. using Learun.Application.CRM;
  2. using System.Web.Mvc;
  3. namespace Learun.Application.Web.Areas.LR_CRMModule.Controllers
  4. {
  5. /// <summary>
  6. /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
  7. /// Copyright (c) 2013-2018 北京泉江科技有限公司
  8. /// 创 建:超级管理员
  9. /// 日 期:2017-07-11 14:20
  10. /// 描 述:现金余额
  11. /// </summary>
  12. public class CashBalanceController : MvcControllerBase
  13. {
  14. private CrmCashBalanceIBLL crmCashBalanceIBLL = new CrmCashBalanceBLL();
  15. #region 视图功能
  16. /// <summary>
  17. /// 列表页面
  18. /// </summary>
  19. /// <returns></returns>
  20. [HttpGet]
  21. public ActionResult Index()
  22. {
  23. return View();
  24. }
  25. #endregion
  26. #region 获取数据
  27. /// <summary>
  28. /// 获取列表
  29. /// </summary>
  30. /// <param name="queryJson">查询参数</param>
  31. /// <returns>返回列表Json</returns>
  32. [HttpGet]
  33. [AjaxOnly]
  34. public ActionResult GetList(string queryJson)
  35. {
  36. var data = crmCashBalanceIBLL.GetList(queryJson);
  37. return JsonResult(data);
  38. }
  39. #endregion
  40. }
  41. }