Files
iMES_Net/iMES.WebApi/Controllers/Report/View_SalaryReportController.cs
2026-02-06 18:34:35 +08:00

22 lines
669 B
C#

/*
*代码由框架生成,任何更改都可能导致被代码生成器覆盖
*如果要增加方法请在当前目录下Partial文件夹View_SalaryReportController编写
*/
using Microsoft.AspNetCore.Mvc;
using iMES.Core.Controllers.Basic;
using iMES.Entity.AttributeManager;
using iMES.Report.IServices;
namespace iMES.Report.Controllers
{
[Route("api/View_SalaryReport")]
[PermissionTable(Name = "View_SalaryReport")]
public partial class View_SalaryReportController : ApiBaseController<IView_SalaryReportService>
{
public View_SalaryReportController(IView_SalaryReportService service)
: base(service)
{
}
}
}