足力健后端,使用.netcore版本,合并1个项目使用

KnowledgeClassController.cs 344B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. using Microsoft.AspNetCore.Mvc;
  6. namespace TVShoppingCallCenter_ZLJ.Controllers.knowledge
  7. {
  8. public class KnowledgeClassController : Controller
  9. {
  10. public IActionResult Index()
  11. {
  12. return View();
  13. }
  14. }
  15. }