wsd_djy/WebSiteCode/WebSiteCode/Controllers/Wsd.cs

23 lines
538 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
// For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
namespace WebSiteCode.Controllers
{
/// <summary>
/// 万仕达放调用接口
/// </summary>
public class Wsd : Controller
{
// GET: /<controller>/
public IActionResult Index()
{
return View();
}
}
}