using Microsoft.AspNetCore.Mvc; using WIDESEA_Core.Controllers.Basic; using WIDESEA_Entity.AttributeManager; using WIDESEA_Services.IServices; namespace WIDESEA_Services.Controllers { [Route("api/dt_stationmanager")] [PermissionTable(Name = "dt_stationmanager")] public partial class dt_stationmanagerController : ApiBaseController { public dt_stationmanagerController(Idt_stationmanagerService service) : base(service) { } } }