调整箱信息接口

This commit is contained in:
18942506660
2023-11-01 16:29:30 +08:00
parent 57b4116031
commit 0f66efa9e2
10 changed files with 110 additions and 55 deletions

View File

@@ -14,7 +14,7 @@ namespace WMS.Web.Domain.Infrastructure
{
Task<Box> Get(int id);
//根据箱号查询明细信息
Task<BoxResponse> GetBox(string BoxBillNo);
Task<List<BoxResponse>> GetBox(List<string> billNos);
//批量修改
Task<bool> EditEntityList(List<Box> entitys, bool isTransaction = true);
}