2021-08-23 16:57:25 +08:00

19 lines
394 B
C#

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);
}
}
}