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
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);
    }
}