Files
wcs/WCS.BLL/Services/IService/ISelfCheckService.cs
hehaibing-1996 aaf7c17562 提交代码
2024-04-23 08:31:37 +08:00

17 lines
405 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WCS.Model.ApiModel.Stocktaking;
using WCS.Model;
using WCS.Model.ApiModel.SelfCheck;
namespace WCS.BLL.Services.IService
{
public interface ISelfCheckService
{
public Task<ResponseBase> StartSelfCheckByShelfCode(StartSelfCheckByShelfCodeRequest request);
}
}