You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
626 B

/*
*,
*PartialData_MachineController
*/
using Microsoft.AspNetCore.Mvc;
using VOL.Core.Controllers.Basic;
using VOL.Entity.AttributeManager;
using VOL.Data.IServices;
namespace VOL.Data.Controllers
{
[Route("api/Data_Machine")]
[PermissionTable(Name = "Data_Machine")]
public partial class Data_MachineController : ApiBaseController<IData_MachineService>
{
public Data_MachineController(IData_MachineService service)
: base(service)
{
}
}
}