Files
iMES_Net/iMES.WebApi/Controllers/Custom/Base_NoticeController.cs

22 lines
627 B
C#
Raw Permalink Normal View History

2026-02-06 18:34:35 +08:00
/*
*,
*Partial文件夹Base_NoticeController编写
*/
using Microsoft.AspNetCore.Mvc;
using iMES.Core.Controllers.Basic;
using iMES.Entity.AttributeManager;
using iMES.Custom.IServices;
namespace iMES.Custom.Controllers
{
[Route("api/Base_Notice")]
[PermissionTable(Name = "Base_Notice")]
public partial class Base_NoticeController : ApiBaseController<IBase_NoticeService>
{
public Base_NoticeController(IBase_NoticeService service)
: base(service)
{
}
}
}