using LeaRun.Application.Service.WaterWellManage; using LeaRun.Util.WebControl; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LeaRun.Application.Busines.WaterWell { /// /// 水源井历史记录 /// public class WaterWellHistoryBLL { HistoryService service = new HistoryService(); #region 获取水源井历史记录 /// /// 获取水源井历史记录 /// /// /// /// /// /// /// /// public string GetHistoryData(Pagination pagination, string keyword, string startT, string endT, string value, bool isAll) { return service.GetHistoryData(pagination, keyword, startT, endT, value, isAll); } #endregion } }