1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| using Microsoft.AspNetCore.Mvc;
|
| namespace DocumentServiceAPI.Web.Entry
| {
| /// <summary>
| /// 测试
| /// </summary>
| [ApiDescriptionSettings("Group1")]
| [Route("api/[controller]")]
| public class HomeController : ControllerBase
| {
| /// <summary>
| /// 测试
| /// </summary>
| /// <returns></returns>
| [HttpGet("aaa")]
| public IActionResult aaa()
| {
| return Ok();
| }
| }
| }
|
|