初始化

This commit is contained in:
2025-11-20 14:38:48 +08:00
commit f9e0cc8a4a
534 changed files with 247694 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
using BLV_API.Dal;
using BLV_API.Models;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace BLV_API.Controllers
{
public class HomeController : Controller
{
public ActionResult Index()
{
ViewBag.Title = "欢迎访问宝来威客控接口服务";
return View();
}
}
}