Files
SecMPS/api_sqlsugar/VolPro.WebApi/Controllers/MES/MES_ProductionLineDeviceController.cs
2026-05-15 23:22:48 +08:00

22 lines
720 B
C#

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