接口优化
This commit is contained in:
@@ -188,6 +188,7 @@ namespace WMS.Web.Api.Controllers
|
|||||||
var result = await _boxInventoryRepositories.GetInfoBy(boxBillNo);
|
var result = await _boxInventoryRepositories.GetInfoBy(boxBillNo);
|
||||||
if(result==null)
|
if(result==null)
|
||||||
return Result<BoxInventoryResponse>.ReFailure(ResultCodes.BoxInventoryNoDataError);
|
return Result<BoxInventoryResponse>.ReFailure(ResultCodes.BoxInventoryNoDataError);
|
||||||
|
result.BoxBillNo = boxBillNo;
|
||||||
return Result <BoxInventoryResponse>.ReSuccess(result);
|
return Result <BoxInventoryResponse>.ReSuccess(result);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2471,6 +2471,11 @@
|
|||||||
箱ID
|
箱ID
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="P:WMS.Web.Core.Dto.Inventory.BoxInventoryResponse.BoxBillNo">
|
||||||
|
<summary>
|
||||||
|
箱号
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
<member name="P:WMS.Web.Core.Dto.Inventory.BoxInventoryResponse.OrgCode">
|
<member name="P:WMS.Web.Core.Dto.Inventory.BoxInventoryResponse.OrgCode">
|
||||||
<summary>
|
<summary>
|
||||||
组织编码
|
组织编码
|
||||||
|
|||||||
@@ -14,6 +14,11 @@ namespace WMS.Web.Core.Dto.Inventory
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public int BoxId { get; set; }
|
public int BoxId { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 箱号
|
||||||
|
/// </summary>
|
||||||
|
public string BoxBillNo { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 组织编码
|
/// 组织编码
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|||||||
Reference in New Issue
Block a user