RealDataBLL.cs 936 B

12345678910111213141516171819202122232425262728293031323334
  1. using LeaRun.Application.Service.WaterWellManage;
  2. using LeaRun.Util.WebControl;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace LeaRun.Application.Busines.WaterWell
  9. {
  10. /// <summary>
  11. /// 实时数据
  12. /// </summary>
  13. public class RealDataBLL
  14. {
  15. RealDataService service = new RealDataService();
  16. #region 获取实时数据
  17. /// <summary>
  18. /// 获取实时数据
  19. /// </summary>
  20. /// <param name="pagination"></param>
  21. /// <param name="keyword"></param>
  22. /// <param name="value"></param>
  23. /// <param name="isAll"></param>
  24. /// <returns></returns>
  25. public string GetRealData(Pagination pagination, string keyword, string value, bool isAll)
  26. {
  27. return service.GetRealData(pagination, keyword, value, isAll);
  28. }
  29. #endregion
  30. }
  31. }