1
刘磊
2024-11-15 ca54eceeebeceea3b6c75e3dbfa3b715806c6106
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
28
29
30
31
32
33
34
35
36
37
38
39
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);
    }
}