Files
iMES_Net/iMES.WebApi/Controllers/System/Sys_WorkFlowTableAuditLogController.cs

22 lines
725 B
C#
Raw Permalink Normal View History

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