Files
iMES_Net/iMES.WebApi/Controllers/Custom/Base_ProductController.cs

22 lines
634 B
C#
Raw Permalink Normal View History

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