12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- 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 查询日报表
- /// <summary>
- /// 查询日报表
- /// </summary>
- /// <param name="waterWellId"></param>
- /// <param name="date"></param>
- /// <returns></returns>
- public string GetDayReport(string waterWellId, string date)
- {
- return Json.ToJson(service.GetDayReport(waterWellId, date));
- }
- #endregion
- #region 查询子日报表
- /// <summary>
- /// 查询子日报表
- /// </summary>
- /// <param name="time"></param>
- /// <param name="day"></param>
- /// <param name="waterWellId"></param>
- /// <returns></returns>
- public string GetSubDayReport(string time, string day, string waterWellId) {
- return Json.ToJson(service.GetSubDayReport(time, day, waterWellId));
- }
- #endregion
- }
- }
|