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 MonthReportBLL { MonthReportService service = new MonthReportService(); #region 查询月报表 /// /// 查询月报表 /// /// /// /// public string GetMonthReport(string waterWellId, string month) { return Json.ToJson(service.GetMonthReport(waterWellId, month)); } #endregion #region 查询子月报表 /// /// 查询子月报表 /// /// /// /// /// public string GetSubMonthReport(string day, string month, string waterWellId) { return Json.ToJson(service.GetSubMonthReport(day, month, waterWellId)); } #endregion } }