SysComController.cs 319 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.Mvc;
  6. namespace PMS.WebUI.Controllers
  7. {
  8. public class SysComController : BaseController
  9. {
  10. // GET: SysCom
  11. public ActionResult ImageView()
  12. {
  13. return View();
  14. }
  15. }
  16. }