Laservall_manager_system/VOL.WebApi/Controllers/Sys/Sys_DictionaryListControlle...

22 lines
666 B
C#
Raw Normal View History

2025-09-25 14:37:10 +08:00
/*
*,
*Partial文件夹Sys_DictionaryListController编写
*/
using Microsoft.AspNetCore.Mvc;
using VOL.Core.Controllers.Basic;
using VOL.Entity.AttributeManager;
using VOL.Sys.IServices;
namespace VOL.Sys.Controllers
{
[Route("api/Sys_DictionaryList")]
[PermissionTable(Name = "Sys_DictionaryList")]
public partial class Sys_DictionaryListController : ApiBaseController<ISys_DictionaryListService>
{
public Sys_DictionaryListController(ISys_DictionaryListService service)
: base(service)
{
}
}
}