15 lines
450 B
C#
15 lines
450 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using VolPro.Core.Controllers.Basic;
|
|
using VolPro.Entity.AttributeManager;
|
|
using Warehouse.IServices;
|
|
|
|
namespace Warehouse.Controllers
|
|
{
|
|
[Route("api/iot_devicedata")]
|
|
[PermissionTable(Name = "iot_devicedata")]
|
|
public partial class iot_devicedataController : ApiBaseController<Iiot_devicedataService>
|
|
{
|
|
public iot_devicedataController(Iiot_devicedataService service) : base(service) { }
|
|
}
|
|
}
|