1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.Mvc;
- namespace PMS.WebUI.Controllers
- {
- public class SysComController : BaseController
- {
- // GET: SysCom
- public ActionResult ImageView()
- {
- return View();
- }
- }
- }
|