zhanghonglin
6 天以前 8f9b9411ca279670bd85fcfa7763987295ed9abf
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);
        }
    }
}