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