first commit
This commit is contained in:
23
ZR.Admin.WebApi/Controllers/System/SysConfigController.cs
Normal file
23
ZR.Admin.WebApi/Controllers/System/SysConfigController.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using ZR.Admin.WebApi.Filters;
|
||||
|
||||
namespace ZR.Admin.WebApi.Controllers.System
|
||||
{
|
||||
/// <summary>
|
||||
/// 配置文件
|
||||
/// </summary>
|
||||
[Verify]
|
||||
[Route("system/config")]
|
||||
public class SysConfigController : BaseController
|
||||
{
|
||||
[HttpGet("list")]
|
||||
public IActionResult Index()
|
||||
{
|
||||
return SUCCESS(1);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user