using HslCommunication.WebSocket;
|
using Microsoft.AspNetCore.Authorization;
|
using Microsoft.AspNetCore.Http;
|
using Microsoft.AspNetCore.Mvc;
|
using WIDESEAWCS_Common.TaskEnum;
|
using WIDESEAWCS_Core;
|
using WIDESEAWCS_Core.BaseController;
|
using WIDESEAWCS_Core.Helper;
|
using WIDESEAWCS_DTO.TaskInfo;
|
using WIDESEAWCS_IPackInfoService;
|
using WIDESEAWCS_ITaskInfoService;
|
using WIDESEAWCS_Model.Models;
|
|
|
namespace WIDESEAWCS_Server.Controllers.PackInfo
|
{
|
[Route("api/stationPackInfo")]
|
[ApiController]
|
public class StationPackInfoController : ApiBaseController<IStationPackInfoService, Dt_StationPackInfo>
|
{
|
public StationPackInfoController(IStationPackInfoService service) : base(service)
|
{
|
}
|
[HttpPost, HttpGet, Route("ManualClearPalletStationData")]
|
public WebResponseContent ManualClearPalletStationData(string StationCode)
|
{
|
return Service.ManualClearPalletStationData(StationCode);
|
}
|
}
|
}
|