PartitionBrowseController.cs 448 B

1234567891011121314151617181920
  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.DMAManage.Controllers
  7. {
  8. public class PartitionBrowseController : MvcControllerBase
  9. {
  10. // 分区绘制
  11. // GET: /DMAManage/PartitionDraw/
  12. #region 视图区域
  13. public ActionResult Index()
  14. {
  15. return View();
  16. }
  17. #endregion
  18. }
  19. }