陈勇
2 天以前 6b74e1dcf5642c8f56975471e27780d695953989
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
using WIDESEA_IStorageBasicService;
using WIDESEA_StorageBasicService;
 
namespace WIDESEA_WMSServer.Controllers;
 
[Route("api/VV_MesLockInfo")]
[ApiController]
public class VV_MesLockInfoController : ApiBaseController<IVV_MesLockInfoService, VV_MesLockInfo>
{
    public VV_MesLockInfoController(IVV_MesLockInfoService service) : base(service)
    {
 
    }
 
    [HttpGet,HttpPost,Route("GetMesLockInfo"),AllowAnonymous]
    public WebResponseContent GetMesLockInfo()
    {
        return Service.GetMesLockInfo();
    }
 
    [HttpGet, HttpPost, Route("GetStockInfo"), AllowAnonymous]
    public WebResponseContent GetStockInfo(string PVI)
    {
        return Service.GetStockInfo(PVI);
    }
 
    [HttpGet, HttpPost, Route("MesLock"), AllowAnonymous]
    public WebResponseContent MesLock([FromBody] object[] keys)
    {
        return Service.MesLock(keys);
    }
}