123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- using LeaRun.Application.Busines.DMAManage;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.Mvc;
- namespace LeaRun.Application.Web.Areas.DMAManage.Controllers
- {
- public class DifferenceAnalysisController : MvcControllerBase
- {
- DifferenceAnalysisBLL bll = new DifferenceAnalysisBLL();
- // 分区绘制
- // GET: /DMAManage/PartitionDraw/
- #region 视图区域
- public ActionResult Index()
- {
- return View();
- }
- #endregion
- #region 获取差量分析数据
- /// <summary>
- /// 获取差量分析数据
- /// </summary>
- /// <returns></returns>
- [HttpGet]
- public ActionResult GetDifferenceAnalysis(string startDate, string endDate, string DMAID)
- {
- return Content(bll.GetDifferenceAnalysis(startDate, endDate, DMAID));
- }
- #endregion
- #region 获取列数据
- /// <summary>
- /// 获取列数据
- /// </summary>
- /// <param name="DMAID"></param>
- /// <returns></returns>
- //[HttpPost]
- public string GetColModel(string DMAID)
- {
- return bll.GetColModel(DMAID);
- }
- #endregion
- }
- }
|