地铁二期项目正式开始

WorkFlowController.cs 357B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.Mvc;
  6. namespace YTSoft.BaseCallCenter.MVCWeb.Controllers
  7. {
  8. public class WorkFlowController : Controller
  9. {
  10. //
  11. // GET: /WorkFlow/
  12. public ActionResult WorkFlowList()
  13. {
  14. return View();
  15. }
  16. }
  17. }