first commit
This commit is contained in:
18
ZR.Admin.WebApi/Controllers/System/SysNoticeController.cs
Normal file
18
ZR.Admin.WebApi/Controllers/System/SysNoticeController.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace ZR.Admin.WebApi.Controllers.System
|
||||
{
|
||||
[Route("system/notice")]
|
||||
public class SysNoticeController : BaseController
|
||||
{
|
||||
[HttpGet("list")]
|
||||
public IActionResult Index()
|
||||
{
|
||||
return SUCCESS(null);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user