AlertController.cs 431 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.Mvc;
  6. namespace LeaRun.Application.Web.Areas.WaterWellManage.Controllers
  7. {
  8. public class AlertController : MvcControllerBase
  9. {
  10. //
  11. // GET: /WaterWellManage/Alert/
  12. #region 视图功能
  13. public ActionResult Index()
  14. {
  15. return View();
  16. }
  17. #endregion
  18. }
  19. }