123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.Mvc;
- namespace KJH55128_Rec.Controllers
- {
- public class FeedBackController : Controller
- {
- /// <summary>
- /// 页面反馈
- /// </summary>
- /// <returns></returns>
- [Route("feedback.html")]
- public ActionResult FeedBack()
- {
- return View();
- }
- }
- }
|