1234567891011121314151617181920212223 |
- 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 AlertController : MvcControllerBase
- {
- //
- // GET: /WaterWellManage/Alert/
- #region 视图功能
- public ActionResult Index()
- {
- return View();
- }
- #endregion
- }
- }
|