12345678910111213141516171819202122232425262728293031323334 |
- 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
- {
- /// <summary>
- /// 实时数据
- /// </summary>
- public class RealDataBLL
- {
- RealDataService service = new RealDataService();
- #region 获取实时数据
- /// <summary>
- /// 获取实时数据
- /// </summary>
- /// <param name="pagination"></param>
- /// <param name="keyword"></param>
- /// <param name="value"></param>
- /// <param name="isAll"></param>
- /// <returns></returns>
- public string GetRealData(Pagination pagination, string keyword, string value, bool isAll)
- {
- return service.GetRealData(pagination, keyword, value, isAll);
- }
- #endregion
- }
- }
|