23 lines
658 B
C#
Raw Normal View History

2025-06-06 16:00:39 +08:00
/*
*,
*Partial文件夹App_ExpertController编写
*/
using Microsoft.AspNetCore.Mvc;
using VOL.AppManager.IServices;
using VOL.Core.Controllers.Basic;
using VOL.Entity.AttributeManager;
namespace VOL.AppManager.Controllers
{
[Route("api/App_Expert")]
[PermissionTable(Name = "App_Expert")]
public partial class App_ExpertController : ApiBaseController<IApp_ExpertService>
{
public App_ExpertController(IApp_ExpertService service)
: base("AppManager","App","App_Expert", service)
{
}
}
}