纽威
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
608 B

3 years ago
  1. using NFine.Application.SystemManage;
  2. using NFine.Code;
  3. using NFine.Domain.Entity.SystemManage;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Text;
  7. using System.Web.Mvc;
  8. namespace NFine.Web.Controllers
  9. {
  10. [HandlerLogin]
  11. public class HomeController : Controller
  12. {
  13. [HttpGet]
  14. public ActionResult Index()
  15. {
  16. return View();
  17. }
  18. [HttpGet]
  19. public ActionResult Default()
  20. {
  21. return View();
  22. }
  23. [HttpGet]
  24. public ActionResult About()
  25. {
  26. return View();
  27. }
  28. }
  29. }