SignetController.cs 494 B

12345678910111213141516171819202122
  1. using LeaRun.Application.Web;
  2. using System.Web.Mvc;
  3. namespace LeaRun.Application.Web.Areas.PublicInfoManage.Controllers
  4. {
  5. /// <summary>
  6. /// 版 本 6.1
  7. /// Copyright (c) 2013-2016 上海力软信息技术有限公司
  8. /// 创建人:佘赐雄
  9. /// 日 期:2016.10.18
  10. /// 描 述:电子签章
  11. /// </summary>
  12. public class SignetController : MvcControllerBase
  13. {
  14. public ActionResult Index()
  15. {
  16. return View();
  17. }
  18. }
  19. }