Files
iMES_Net/iMES.WebApi/Controllers/Production/Production_ProductPlanController.cs

22 lines
712 B
C#
Raw Normal View History

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