体检系统架构
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
445 B

using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
namespace PEIS.Cloud.Controllers
{
/// <summary>
/// 实例接口文件 在这里写相关的接口返回,不同业务用不同文件夹区分(git不允许提交空文件夹,所以建了文件夹需要在下面新建文件)
/// </summary>
[Route("api/[controller]")]
[ApiController]
public class SampleController : ControllerBase
{
}
}