箱号查询

This commit is contained in:
18942506660
2023-10-31 10:25:31 +08:00
parent b25c814b16
commit c3fe21ffa8
4 changed files with 103 additions and 3 deletions

View File

@@ -2,6 +2,7 @@
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using WMS.Web.Core.Dto;
using WMS.Web.Domain.Entitys;
namespace WMS.Web.Domain.Infrastructure
@@ -12,5 +13,7 @@ namespace WMS.Web.Domain.Infrastructure
public interface IBoxRepositories
{
Task<Box> Get(string BoxBillNo);
//根据箱号查询物料信息
Task<List<BoxDetailResponse>> GetDetails(string BoxBillNo);
}
}