using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using WIDESEAWCS_Core; using WIDESEAWCS_Core.BaseController; using WIDESEAWCS_ISystemServices; using WIDESEAWCS_Model.Models; using WIDESEAWCS_Model.Models.System; namespace WIDESEAWCS_Server.Controllers.System { [Route("api/StationManger")] [ApiController] public class Dt_StationMangerController : ApiBaseController { public Dt_StationMangerController(IDt_StationMangerService service) : base(service) { } //根据站台名称查询站台 [HttpPost, HttpGet, Route("SelectStationManger"), AllowAnonymous] public string SelectStationManger(string StationName) { return Service.SelectStationManger(StationName); } } }