using LeaRun.Application.Busines.WaterWell; using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace LeaRun.Application.Web.Areas.WaterWellManage.Controllers { public class MonthReportController : MvcControllerBase { // 月报表 // GET: /WaterWellManage/MonthRecord/ MonthReportBLL monthReportBLL = new MonthReportBLL(); public ActionResult Index() { return View(); } #region 获取分析数据 /// /// 获取分析数据 /// /// [HttpGet] public ActionResult GetListJson(string waterWellId, string month) { return Content(monthReportBLL.GetMonthReport(waterWellId, month)); } #endregion #region 获取分析子数据 /// /// 获取分析子数据 /// /// /// /// /// /// [HttpGet] public ActionResult GetSubListJson(string Day, string Month, string WaterWellId, string id) { return Content(monthReportBLL.GetSubMonthReport(Day, Month, WaterWellId)); } #endregion } }