zhanghonglin
2026-04-06 cfb3f2c7e9cde8cc2eb2a19263d0802c0c5410a3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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<IDt_StationMangerService, Dt_StationManger>
    {
        public Dt_StationMangerController(IDt_StationMangerService service) : base(service)
        {
        }
 
 
        //根据站台名称查询站台
        [HttpPost, HttpGet, Route("SelectStationManger"), AllowAnonymous]
        public string SelectStationManger(string StationName)
        {
            return Service.SelectStationManger(StationName);
        }
    }
}