Huangxiaoqiang-03
2025-03-24 45309d2ae73cc276d856220520dd8e8c1a46d35a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using WIDESEAWCS_Core;
using WIDESEAWCS_Tasks;
 
namespace WIDESEAWCS_Server.Controllers.BZLOCK
{
    [Route("api/[controller]")]
    [ApiController]
    public class JCBZYLController : Controller
    {
        private readonly IGetStationService _getStationService;
        public JCBZYLController(IGetStationService getStationService) { _getStationService = getStationService; }
 
        [HttpPost, Route("GetStationHasPallet"), AllowAnonymous]
        public WebResponseContent GetStationHasPallet([FromBody]List<string> stations)
        {
           return _getStationService.GetStationHasPallet(stations);
        }
    }
}