23 lines
642 B
C#
Raw Permalink Normal View History

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