1234567891011121314151617181920 |
- 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 PartitionBrowseController : MvcControllerBase
- {
- // 分区绘制
- // GET: /DMAManage/PartitionDraw/
- #region 视图区域
- public ActionResult Index()
- {
- return View();
- }
- #endregion
- }
- }
|