using LeaRun.Application.Entity.WaterWellManage; using LeaRun.Application.Service.WaterWellManage; using LeaRun.Util; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LeaRun.Application.Busines.WaterWell { public class DayReportBLL { DayReportService service = new DayReportService(); #region 查询日报表 /// /// 查询日报表 /// /// /// /// public string GetDayReport(string waterWellId, string date) { return Json.ToJson(service.GetDayReport(waterWellId, date)); } #endregion #region 查询子日报表 /// /// 查询子日报表 /// /// /// /// /// public string GetSubDayReport(string time, string day, string waterWellId) { return Json.ToJson(service.GetSubDayReport(time, day, waterWellId)); } #endregion } }