From 4f0567c2e02d1bbdfe497dad9b948d3ecf4d3c3a Mon Sep 17 00:00:00 2001 From: liaoxujun@qq.com <liaoxujun@qq.com> Date: 星期三, 26 七月 2023 16:03:13 +0800 Subject: [PATCH] 增加配置文件,增加数据库codefirst --- DocumentServiceAPI.Web.Entry/HomeController.cs | 15 +++++++++++++++ 1 files changed, 15 insertions(+), 0 deletions(-) diff --git a/DocumentServiceAPI.Web.Entry/HomeController.cs b/DocumentServiceAPI.Web.Entry/HomeController.cs new file mode 100644 index 0000000..7b98c19 --- /dev/null +++ b/DocumentServiceAPI.Web.Entry/HomeController.cs @@ -0,0 +1,15 @@ +锘縰sing Microsoft.AspNetCore.Mvc; + +namespace DocumentServiceAPI.Web.Entry +{ + [ApiDescriptionSettings("Group1")] + [Route("api/[controller]")] + public class HomeController : ControllerBase + { + [HttpGet("aaa")] + public IActionResult aaa() + { + return Ok(); + } + } +} -- Gitblit v1.9.1