using Microsoft.AspNetCore.Http;
|
using Microsoft.AspNetCore.Mvc;
|
using WIDESEA_DTO;
|
using WIDESEA_IStoragIntegrationServices;
|
|
namespace WIDESEA_WMSServer.Controllers;
|
|
[Route("api/[controller]")]
|
[ApiController]
|
public class MCSController : Controller
|
{
|
private readonly IMCSService _MCSService;
|
|
public MCSController(IMCSService MCSService) { _MCSService = MCSService; }
|
|
[HttpPost("NotifyFinishTest")]
|
public WebResponseContent NotifyFinishTest([FromBody] object input)
|
{
|
return _MCSService.NotifyFinishTest(input);
|
}
|
|
[HttpPost("RequestChangeLocation")]
|
public WebResponseContent RequestChangeLocation([FromBody] object input)
|
{
|
return _MCSService.RequestChangeLocation(input);
|
}
|
|
[HttpPost("ModifyAccessStatus")]
|
public WebResponseContent ModifyAccessStatus([FromBody] object input)
|
{
|
return _MCSService.ModifyAccessStatus(input);
|
}
|
|
[HttpPost("RequsetCellInfo")]
|
public WebResponseContent RequsetCellInfo([FromBody] object input)
|
{
|
return _MCSService.RequsetCellInfo(input);
|
}
|
}
|