15 lines
306 B
C#
15 lines
306 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace WebAPI.Controllers
|
|
{
|
|
/// <summary>
|
|
/// 系统参数配置
|
|
/// </summary>
|
|
[ApiController]
|
|
[Route("api/system/param")]
|
|
public class SystemParamController : ControllerBase
|
|
{
|
|
// TODO: 实现 系统参数配置 相关接口
|
|
}
|
|
}
|