修复bug
This commit is contained in:
@@ -14,9 +14,9 @@ namespace WMS.Web.Core.Dto
|
||||
/// </summary>
|
||||
public int Id { get; set; }
|
||||
/// <summary>
|
||||
/// 箱Id
|
||||
/// 箱号
|
||||
/// </summary>
|
||||
public int BoxId { get; set; }
|
||||
public string BoxBillNo { get; set; }
|
||||
/// <summary>
|
||||
/// 明细信息
|
||||
/// </summary>
|
||||
|
||||
@@ -52,7 +52,7 @@ namespace WMS.Web.Repositories
|
||||
BoxResponse result = new BoxResponse()
|
||||
{
|
||||
Id = entity.Id,
|
||||
BoxId = entity.OpsBoxId
|
||||
BoxBillNo = entity.BoxBillNo
|
||||
};
|
||||
result.Details = await _context.BoxDetails
|
||||
.GroupJoin(_context.Box, detail => detail.Fid, order => order.Id, (detail, orders) => new { detail, orders })
|
||||
|
||||
Reference in New Issue
Block a user