WaterWellHistoryBLL.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  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 WaterWellHistoryBLL
  14. {
  15. HistoryService service = new HistoryService();
  16. #region 获取水源井历史记录
  17. /// <summary>
  18. /// 获取水源井历史记录
  19. /// </summary>
  20. /// <param name="pagination"></param>
  21. /// <param name="keyword"></param>
  22. /// <param name="startT"></param>
  23. /// <param name="endT"></param>
  24. /// <param name="value"></param>
  25. /// <param name="isAll"></param>
  26. /// <returns></returns>
  27. public string GetHistoryData(Pagination pagination, string keyword, string startT, string endT, string value, bool isAll)
  28. {
  29. return service.GetHistoryData(pagination, keyword, startT, endT, value, isAll);
  30. }
  31. #endregion
  32. }
  33. }